@if(isset($point)) {!! Form::model($point, ['method' => 'post']) !!} @else {!! Form::open(['method' => 'post']) !!} @endif
{!! Form::hidden('title', null, ['class' => 'form-control','id' => 'title']) !!}
{!! Form::label('color_id', 'Color')!!}
{!! Form::label('description', 'Description')!!} {!! Form::textarea('description', null, ['class' => 'form-control']) !!}
{!! Form::label('latitude', 'Latitude')!!} {!! Form::text('latitude', null, ['class' => 'form-control']) !!}
{!! Form::label('longitude', 'Longitude')!!} {!! Form::text('longitude', null, ['class' => 'form-control']) !!}
{!! Form::label('country_id', 'Country')!!}
{!! Form::label('start_time', 'Start time')!!}
@if(isset($point)) @else @endif @if(isset($point)) {{$point->start_time}} @endif
{!! Form::label('end_time', 'End time')!!}
@if(isset($point)) @else @endif @if(isset($point)) {{$point->end_time}} @endif
{!! Form::token(); !!}
{!! Form::close()!!}