@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content') @include('successMsg')
{{ $pageTitle }} Generate
{{-- program_id --}}
{!! Form::label('program_id', 'Program:*', ['class' => ' control-label'], false) !!}
{!! Form::select('program_id', $programs ?? [], $admissionExam->program_id ?? null, [ 'class' => 'form-control custom-select2', 'placeholder' => 'Select Program', 'id' => 'program_id', 'required' => true, ]) !!}

{{-- session --}}
{!! Form::label('session_id', 'Session:*', ['class' => ' control-label'], false) !!}
{!! Form::select('session_id', $sessions ?? [], $admissionExam->session_id ?? null, [ 'class' => 'form-control custom-select2', 'placeholder' => 'Select Session', 'id' => 'session_id', 'required' => true, ]) !!}

{{-- semester_class_id --}}
{!! Form::label('semester_class_id', 'Class:', ['class' => ' control-label'], false) !!}
{!! Form::select('semester_class_id', $semesterClasses ?? [], $admissionExam->semester_class_id ?? null, [ 'class' => 'form-control custom-select2', 'placeholder' => 'Select Class', 'id' => 'semester_class_id', 'required' => true, ]) !!}

{{-- academic exam --}}
{!! Form::label('academic_exam_id', 'Academic Exam:*', ['class' => ' control-label'], false) !!}

{{-- exam shift --}}
{!! Form::label('exam_shift_id', 'Exam Shift:', ['class' => ' control-label'], false) !!}

{{-- search buttons --}}

{!! Form::open(['id' => 'exam_routine_form', 'method' => 'POST']) !!} {{-- Table Section --}}
{!! Form::close() !!}
@endsection