{!! Form::label('location', 'Location') !!}
{!! Form::text('location', null, ['class' => 'form-control']) !!}
{!! Form::label('name', 'Name') !!}
{!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('url', 'Url') !!}
{!! Form::text('url', null, ['class' => 'form-control']) !!}
{!! Form::label('started_at', 'Started at') !!}
{!! Form::date('started_at') !!}
{!! Form::label('ended_at', 'Ended at') !!}
{!! Form::date('ended_at') !!}
{!! Form::submit($submit_title, ['class' => 'btn btn-primary form-control']) !!}
@include('admin.partials.reload')