@extends('backend.layouts.master') @section('pageTitle') Student List @endsection @section('pageContent') Student List Dashboard Report Student List @if(count($errors->all())) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif By Class By Filters @csrf Academic Year* {!! Form::select('academic_year', $academic_years, $default_academic_year , ['placeholder' => 'Pick a year...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('academic_year') }} Class* {!! Form::select('class_id', $classes, null , ['placeholder' => 'Pick a class...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('class_id') }} Section {!! Form::select('section_id', [], null , ['placeholder' => 'Pick a section...','class' => 'form-control select2']) !!} {{ $errors->first('section_id') }} Print @csrf Academic Year* {!! Form::select('academic_year', $academic_years, $default_academic_year , ['placeholder' => 'Pick a year...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('academic_year') }} Gender {!! Form::select('gender', ['0' => 'All'] + AppHelper::GENDER, 0 , ['class' => 'form-control select2']) !!} {{ $errors->first('gender') }} Religion {!! Form::select('religion', ['0' => 'All'] + AppHelper::RELIGION, null , ['class' => 'form-control select2']) !!} {{ $errors->first('religion') }} Blood Group {!! Form::select('blood_group', ['0' => 'All'] + AppHelper::BLOOD_GROUP, 0 , ['class' => 'form-control select2']) !!} {{ $errors->first('blood_group') }} Print @endsection @section('extraScript') @endsection