@extends('backEnd.master') @section('title') @lang('admin.generate_certificate') @endsection @section('mainContent') @push('css') @endpush
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'generate_certificate_search', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}

@lang('common.select_criteria')

@if (moduleStatusCheck('University')) @includeIf( 'university::common.session_faculty_depart_academic_semester_level', [ 'hide' => ['USUB', 'UA', 'US', 'USL', 'USEC'], 'required' => ['US'], 'div' => 'col-lg-3', ] ) @else
@if ($errors->has('class')) {{ @$errors->first('class') }} @endif
@if ($errors->has('section')) {{ @$errors->first('section') }} @endif
loader
@if ($errors->has('certificate')) {{ @$errors->first('certificate') }} @endif
@endif
{{ Form::close() }}
@if (isset($students))

@lang('student.student_list')

@foreach ($students as $record) @endforeach
@lang('admin.admission_no') @lang('admin.name') @lang('admin.class_Sec') @lang('common.father_name') @lang('admin.date_of_birth') @lang('admin.gender') @lang('admin.mobile')
{{ @$record->student->admission_no }} {{ @$record->student->full_name }} {{ @$record->class != '' ? @$record->class->class_name : '' }} ({{ @$record->section != '' ? @$record->section->section_name : '' }}) {{ @$record->student->parents != '' ? @$record->student->parents->fathers_name : '' }} {{ @$record->student->date_of_birth != '' ? dateConvert(@$record->student->date_of_birth) : '' }} {{ @$record->student->gender != '' ? @$record->student->gender->base_setup_name : '' }} {{ @$record->student->mobile }}
@endif @endsection @include('backEnd.partials.data_table_js')