{!! Form::text('schoolyear', NULL, array('id' => 'schoolyear','required', 'class' => 'form-control','autocomplete'=>'off')) !!} @if ($errors->has('schoolyear')) {{ $errors->first('schoolyear') }} @endif
{!! Form::text('starttime', NULL, array('id' => 'starttime', 'class' => 'form-control','autocomplete'=>'off')) !!} @if ($errors->has('starttime')) {{ $errors->first('starttime') }} @endif
{!! Form::text('endtime', NULL, array('id' => 'endtime', 'class' => 'form-control', 'autocomplete'=>'off')) !!} @if ($errors->has('endtime')) {{ $errors->first('endtime') }} @endif
{!! Form::select('status',status(), old('status'), array('id' => 'status', 'class' => 'form-control', 'placeholder' => trans('Choose'))) !!} @if ($errors->has('status')) {{ $errors->first('status') }} @endif
@push('script') @endpush