Remove extra level field and fix documentation link
This commit is contained in:
parent
3d55fc09f7
commit
246c828d7a
@ -7,8 +7,8 @@
|
||||
the values used come from the subfleet of the aircraft that the flight is
|
||||
filed with. Only assign the fares you want to override. They can be set as
|
||||
a monetary amount, or a percentage.
|
||||
<a href="https://github.com/nabeelio/phpvms/wiki/finances#flight-fares"
|
||||
target="_blank">Read this wiki page for more details and information.</a>
|
||||
<a href="http://docs.phpvms.net/concepts/finances"
|
||||
target="_blank">Read documentation about finances</a>.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
@ -76,23 +76,17 @@ SAME ROW
|
||||
<p class="text-danger">{{ $errors->first('arr_time') }}</p>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-sm-2">
|
||||
<div class="form-group col-sm-3">
|
||||
{!! Form::label('level', 'Flight Level:') !!}
|
||||
{!! Form::text('level', null, ['class' => 'form-control']) !!}
|
||||
<p class="text-danger">{{ $errors->first('level') }}</p>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-sm-2">
|
||||
{!! Form::label('distance', 'Distance:') !!}
|
||||
<div class="form-group col-sm-3">
|
||||
{!! Form::label('distance', 'Distance:') !!} <span class="small">in miles</span>
|
||||
{!! Form::text('distance', null, ['class' => 'form-control']) !!}
|
||||
<p class="text-danger">{{ $errors->first('distance') }}</p>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-sm-2">
|
||||
{!! Form::label('level', 'Flight Level:') !!}
|
||||
{!! Form::text('level', null, ['class' => 'form-control']) !!}
|
||||
<p class="text-danger">{{ $errors->first('level') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
|
Loading…
Reference in New Issue
Block a user