@extends('backEnd.master') @section('title') @lang('exam.exam_schedule_create') @endsection @push('css') @endpush @section('mainContent')

@lang('common.select_criteria')

{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'exam_schedule_create_store', 'method' => 'post', 'enctype' => 'multipart/form-data', 'id' => 'search_student']) }}
@if ($errors->has('exam_type')) {{ $errors->first('exam_type') }} @endif
@if ($errors->has('class')) {{ $errors->first('class') }} @endif
loader
@if ($errors->has('section')) {{ $errors->first('section') }} @endif
{{ Form::close() }}
@if (isset($exam_schedule))

@lang('exam.exam_schedule') | @lang('exam.exam'): {{ @$examName != '' ? $examName : ' ' }}, @lang('common.class'): {{ @$search_current_class != '' ? $search_current_class->class_name : ' ' }}, @lang('common.section'): {{ @$search_current_section != '' ? $search_current_section->section_name : 'All Sections' }},

@lang('common.print')
{{ Form::open([ 'class' => 'form-horizontal', 'files' => true, 'route' => 'add-exam-routine-store', 'method' => 'POST', 'enctype' => 'multipart/form-data', 'name' => 'myForm', 'id' => 'validateAddNewExamRoutine', ]) }}
@foreach ($exam_schedule as $row => $routine) @endforeach
@lang('academics.subject') @lang('common.class') @lang('common.section') @lang('common.teacher') @lang('common.date') @lang('academics.start_time') @lang('exam.end_time') @lang('common.room') @lang('common.action')
@if ($errors->has('class')) {{ $errors->first('class') }} @endif
@if ($errors->has('section')) {{ $errors->first('section') }} @endif
loader
@if (userPermission('delete-class-routine')) @endif
{{ Form::close() }}
@endif @if (isset($exam_schedule)) @push('script') @endpush @endif @endsection @include('backEnd.partials.date_picker_css_js')