Fix adding of airport
Fix the adding of airport. It will now save the lat & Long and allow to put decimals in rather than just a rounded number
This commit is contained in:
@@ -16,12 +16,12 @@
|
||||
|
||||
<div class="form-group col-sm-6">
|
||||
{!! Form::label('lat', 'Latitude:') !!}
|
||||
{!! Form::number('lat', null, ['class' => 'form-control']) !!}
|
||||
{!! Form::number('lat', null, ['class' => 'form-control', 'step' => '0.000001']) !!}
|
||||
</div>
|
||||
|
||||
<div class="form-group col-sm-6">
|
||||
{!! Form::label('lon', 'Longitude:') !!}
|
||||
{!! Form::number('lon', null, ['class' => 'form-control']) !!}
|
||||
{!! Form::number('lon', null, ['class' => 'form-control', 'step' => '0.000001']) !!}
|
||||
</div>
|
||||
|
||||
<!-- Submit Field -->
|
||||
|
||||
Reference in New Issue
Block a user