@extends('backEnd.master') @section('title') @lang('admin.generate_certificate') @endsection @section('mainContent')

@lang('common.select_criteria')

{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'certificate-bulk-print-seacrh', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
@if ($errors->has('class')) {{ @$errors->first('class') }} @endif
loader
@if ($errors->has('certificate')) {{ @$errors->first('certificate') }} @endif
{{ Form::close() }}
@if(isset($students))

@lang('common.student_list')

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