@extends('layouts.scaffold')
@section('title')
Add Batch Class Timings|Golars Networks
@stop
@section('main')
{{ Form::open(array('route' => 'classtimings.store','id' => 'classcreate')) }}
-
{{ Form::label('class_date', 'Class Date: *') }}
{{ Form::text('class_date',null,array('class' => 'datepicker')) }}
-
{{ Form::label('class_start', 'Class Start: *') }}
{{ Form::select('class_start',$tNow) }}
-
{{ Form::label('class_end', 'Class End: *') }}
{{ Form::select('class_end',$tNow) }}
-
{{ Form::label('description', 'Description: *') }}
{{ Form::textarea('description',null,array('class' => 'ckeditor')) }}
-
{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}
Cancel
{{ Form::hidden('batch_id',$batch_id)}}
{{ Form::hidden('batchName',$batchName)}}
{{ Form::close() }}
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
@if ($scripts='js/classtimings/create_batchs.js') @endif
@stop