@extends('backEnd.master') @section('title') @lang('examplan::exp.generate_admit_card') @endsection @section('mainContent')
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'examplan.admitcard.search', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}

@lang('common.select_criteria')

@if(moduleStatusCheck('University')) @includeIf('university::common.session_faculty_depart_academic_semester_level', ['required' => ['USN', 'UD', 'UA', 'US', 'USL', 'USEC'],'hide'=> ['USUB'] ])
{{ Form::select('exam_type',[""=>__('exam.select_exam').'*'], null , ['class' => 'primary_select form-control'. ($errors->has('exam_type') ? ' is-invalid' : ''), 'id'=>'select_exam_typ_subject']) }}
loader
@if ($errors->has('exam_type')) {{ @$errors->first('exam_type') }} @endif
@else
@if ($errors->has('exam')) {{ @$errors->first('exam') }} @endif
@if ($errors->has('class')) {{ $errors->first('class') }} @endif
loader
@if ($errors->has('section')) {{ $errors->first('section') }} @endif
@endif
{{ Form::close() }}
@if (isset($records))

@lang('common.student_list')

{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'examplan.admitcard.generate', 'method' => 'POST', 'target' => '_blank', 'enctype' => 'multipart/form-data']) }}
@foreach ($records as $student) @endforeach
@lang('student.student_name') @lang('student.admission_no') @lang('common.class') @lang('student.father_name') @lang('student.category') @lang('common.gender')
id, $old_admit_ids)) checked @endif --}} class="common-checkbox" name="data[{{ $loop->index }}][checked]" value="1"> {{ $student->studentDetail->full_name }} {{ $student->studentDetail->admission_no }} {{ $student->class != '' ? @$student->class->class_name : '' }} ({{ '(' . $student->section != '' ? $student->section->section_name : '' . ')' }}) {{ $student->studentDetail->parents != '' ? $student->studentDetail->parents->fathers_name : '' }} {{ $student->studentDetail->category != '' ? $student->studentDetail->category->category_name : '' }} {{ $student->studentDetail->gender != '' ? $student->studentDetail->gender->base_setup_name : '' }}
{{ Form::close() }}
@endif @section('script') @endsection @endsection