@extends('layouts.admin') @section('css') @endsection @section('content')
{{ Form::open(array('route' => $routes, 'method' => 'POST' ,'id' => 'ajaxSave','files' => true))}}
{{Form::label('start_date', __('request-comment.start_date'), array('class' => 'control-label'))}} {{ Form::text('start_date',dateFormat($data->start_date,SHOW_DATE), array('class' => 'form-control datepicker-input')) }}
{{Form::label('end_date', __('request-comment.end_date'), array('class' => 'control-label'))}} {{ Form::text('end_date',dateFormat($data->end_date,SHOW_DATE), array('class' => 'form-control datepicker-input')) }}
{{Form::label('id', __('request-comment.comment'), array('class' => 'control-label'))}} {{ Form::textarea('comment', $data->comment,array('class' => 'form-control'))}}
  • {{ Form::submit( __('common.save'), array('class' => 'btn btn-primary width80'));}}
  • {{--
  • {{ Form::reset( __('common.cancel'), array('class' => 'btn btn-default width80'));}}
  • --}}
@if($data->id) @method('PUT') @endif {{ Form::close()}}
@endsection