@extends('layouts.scaffold')
@section('title')
Edit Batch Class Timing|Golars Networks
@stop
@section('main')
{{ Form::model($classtiming, array('method' => 'PATCH', 'route' => array('classtimings.update', $classtiming->id),'id' => 'classedit')) }}
-
{{ Form::label('class_date', 'Class Date: *') }}
{{ Form::text('class_date', $class_date, array('class' => 'datepicker')) }}
-
{{ Form::label('class_start', 'Class Start: *') }}
{{ Form::select('class_start',$timedata,$class_start) }}
-
{{ Form::label('class_end', 'Class End: *') }}
{{ Form::select('class_end',$timedata,$class_end) }}
-
{{ Form::label('description', 'Description: *') }}
{{ Form::textarea('description',null,array('class' => 'ckeditor')) }}
{{ Form::hidden('batch_id',$classtiming->batch_id) }}
{{ Form::hidden('batchName',$batchName[0]) }}
-
{{ Form::submit('Update', array('class' => 'btn btn-info')) }}
Cancel
{{ Form::close() }}
@if ($errors->any())