{{-- Name: notice.create Author: JH2 Created: 2015-05-26 --}} @extends('partials.box') @section($content_id) {!! Form::model('Sendout', ['method' => 'put', 'route' => ['sendout.update', $sendout->id], 'class' => 'form-horizontal', 'data-element' => 'sendout-form']) !!}
{!! Form::label('start_time', Lang::get('sendout.form.start_time'), ['class' => 'col-md-3 control-label']) !!}
{!! Form::input('text', 'start_time', (old('sort_order'))?old('start_time'):date('Y-m-d H:i:00'), ['class' => 'form-control', 'id' => 'start-time']) !!}
{!! $errors->first('start_time', ':message') !!}

{!! Form::submit(Lang::get('sendout.form.save'), ['class' => 'btn btn-primary', 'data-element' => 'sendout_update']) !!}
{!! Form::close() !!}
@stop @section('footer-script') @stop