@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content') @include('successMsg')
Add {{ $pageTitle }}
{{-- 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, ]) !!}

{{-- Exam Name --}}
{!! Form::label('academic_exam_id', 'Exam Name: *', ['class' => ' control-label'], false) !!}
{!! Form::select('academic_exam_id', [], null, [ 'class' => 'form-control custom-select2', 'placeholder' => 'Select Exam Name', 'id' => 'academic_exam_id', 'required' => true, ]) !!}

{{-- Exam Date --}}
{!! Form::label('routine_subject_exam_date', 'Exam Date: *', ['class' => ' control-label'], false) !!}
{!! Form::select('routine_subject_exam_date', [], null, [ 'class' => 'form-control custom-select2', 'placeholder' => 'Select Exam Date', 'id' => 'routine_subject_exam_date', 'required' => true, ]) !!}

{{-- search buttons --}}

{!! Form::open(['id' => 'examSeatPlan_form', 'method' => 'POST']) !!}
@endsection