{{ Form::text('name', old('name'), ['class' => 'form-control','placeholder' => 'Name']) }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ Form::text('latitude', old('latitude'), ['class' => 'form-control','placeholder' => 'Latitude']) }}
@if($errors->has('latitude'))
{{ $errors->first('latitude') }}
@endif
{{ Form::text('longitude', old('longitude'), ['class' => 'form-control','placeholder' => 'Longitude']) }}
@if($errors->has('longitude'))
{{ $errors->first('longitude') }}
@endif