@extends('admin::layouts.plane') @section('page_heading') {{$title}} @endsection @section('content')

Marks Window Open/Close

{{ Form::open(array('url' => 'config/marks-window', 'method' => 'post')) }} {{ csrf_field() }} {{ Form::select('schoolName', $schools, $schoolName, ['placeholder' => '--Select School--', 'class' => 'schoolName', 'id' => 'schoolName', 'required' => '']) }} {{ Form::select('examinationType', ["Pre Mid Term"=>"Pre Mid Term","Half Yearly"=>"Half Yearly","Post Mid Term"=>"Post Mid Term","Final"=>"Final"], '', ['placeholder' => '--Examination Type--', 'class' => 'examinationType ', 'id' => 'examinationType', 'required' => '']) }} {{ Form::select('staffType', ['Teacher','Observer'], '', ['placeholder' => '--Staff Type--', 'class' => 'staffType', 'id' => 'staffType', 'required' => '']) }} {{ Form::close() }}

@php if(count($schoolName)) { @endphp
{{ Form::open(array('url' => 'feeadminpanel/concession-window', 'method' => 'post')) }} {{ csrf_field() }} @php $i = 1; @endphp @foreach($schools as $key => $value) @php $i++; @endphp @endforeach
 AllClassSectionStaff NameStart Date: {{ Form::date('startDate', '', ['class' => 'input-sm startDate', 'id' => 'startDate']) }}End Date: {{ Form::date('startDate', '', ['class' => 'input-sm startDate', 'id' => 'startDate']) }}
{{ Form::close() }}
@php } @endphp @stop