Add MTOW and ZFW to aircraft editor #775
This commit is contained in:
@@ -37,18 +37,15 @@
|
||||
<div class="col-12">
|
||||
<div class="form-container">
|
||||
<h6>
|
||||
<span style="float:right">
|
||||
View list of
|
||||
<a href="https://en.wikipedia.org/wiki/List_of_ICAO_aircraft_type_designators"
|
||||
target="_blank">
|
||||
IATA and ICAO Type Designators
|
||||
</a>
|
||||
</span>
|
||||
<i class="fas fa-plane"></i>
|
||||
Aircraft Information
|
||||
|
||||
<span style="float:right">
|
||||
View list of
|
||||
<a href="https://en.wikipedia.org/wiki/List_of_ICAO_aircraft_type_designators"
|
||||
target="_blank">IATA and ICAO Type Designators</a>
|
||||
</span>
|
||||
<i class="fas fa-plane"></i> Aircraft Information
|
||||
</h6>
|
||||
<div class="form-container-body">
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-sm-12">
|
||||
{{ Form::label('name', 'Name:') }} <span class="required">*</span>
|
||||
@@ -56,6 +53,7 @@
|
||||
<p class="text-danger">{{ $errors->first('name') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-sm-3">
|
||||
{{ Form::label('iata', 'IATA:') }}
|
||||
@@ -75,6 +73,20 @@
|
||||
<p class="text-danger">{{ $errors->first('registration') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-sm-6">
|
||||
{{ Form::label('mtow', 'Max Takeoff Weight (MTOW):') }}
|
||||
{{ Form::text('mtow', null, ['class' => 'form-control']) }}
|
||||
<p class="text-danger">{{ $errors->first('mtow') }}</p>
|
||||
</div>
|
||||
<div class="form-group col-sm-6">
|
||||
{{ Form::label('zfw', 'Zero Fuel Weight (ZFW):') }}
|
||||
{{ Form::text('zfw', null, ['class' => 'form-control']) }}
|
||||
<p class="text-danger">{{ $errors->first('zfw') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user