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

@lang('common.select_criteria')

{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'generate_id_card_bulk_search', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
@if ($errors->has('role')) {{ @$errors->first('role') }} @endif
{{--
loader
--}}
@if ($errors->has('id_card')) {{ @$errors->first('id_card') }} @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