{!! Form::label('date', 'Date *', ['class' => 'control-label']) !!}
{!! Form::text('date', null, ['class' => 'form-control date-picker', 'autocomplete' => 'off']) !!}
@if($errors->has('date'))
{{ $errors->first('date') }}
@endif
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!}
{!! link_to_route('admin.tour.edit', 'Back', $tour, ['class' => 'btn btn-default']) !!}
@section('styles')
@endsection
@section('scripts')
@endsection