@extends('blank') @section('content')
{!! Form::open(['method' => 'PUT', 'url' => '/', 'class' => 'form-validation']) !!} @include('errors.list') @include('flash::message')
{{ Jenssegers\Date\Date::now()->format('l j F Y, H:i') }}
{!! Form::label('location', 'Mi trovo presso: ') !!} {!! Form::textarea('location', null, ['class' => 'form-control', 'required' => '', 'maxlength' => 80]) !!}
{!! Form::label('estimated_return', 'Rientro in ufficio previsto: ') !!} {!! Form::select('estimated_return', $availableTimes, ['class' => 'form-control', 'required' => '']) !!}
{!! Form::submit('Salva posizione', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@endsection