49 lines
1.9 KiB
PHP
49 lines
1.9 KiB
PHP
<div class="row">
|
|
|
|
<div class="form-group col-sm-6">
|
|
{!! Form::label('name', 'Name:') !!}
|
|
{!! Form::text('name', null, ['class' => 'form-control']) !!}
|
|
<p class="text-danger">{{ $errors->first('name') }}</p>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-6">
|
|
{!! Form::label('type', 'Type:') !!}
|
|
{!! Form::text('type', null, ['class' => 'form-control']) !!}
|
|
<p class="text-danger">{{ $errors->first('type') }}</p>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
|
|
<div class="form-group col-sm-4">
|
|
{!! Form::label('airline_id', 'Airline:') !!}
|
|
{!! Form::select('airline_id', $airlines, null , ['class' => 'form-control select2']) !!}
|
|
<p class="text-danger">{{ $errors->first('airline_id') }}</p>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-4">
|
|
{!! Form::label('fuel_type', 'Fuel Type:') !!}
|
|
{!! Form::select('fuel_type', $fuel_types, null , ['class' => 'form-control select2']) !!}
|
|
<p class="text-danger">{{ $errors->first('fuel_type') }}</p>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-4">
|
|
{!! Form::label('ground_handling_multiplier', 'Ground Handling Multiplier:') !!}
|
|
{!! Form::text('ground_handling_multiplier', null, ['class' => 'form-control']) !!}
|
|
<p class="text-danger">{{ $errors->first('ground_handling_multiplier') }}</p>
|
|
|
|
@component('admin.components.info')
|
|
This is the multiplier of the airport ground-handling cost to charge for
|
|
aircraft in this subfleet, as a percentage. Defaults to 100.
|
|
@endcomponent
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
|
|
<div class="form-group col-sm-12">
|
|
<div class="pull-right">
|
|
{!! Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) !!}
|
|
<a href="{!! route('admin.subfleets.index') !!}" class="btn btn-default">Cancel</a>
|
|
</div>
|
|
</div>
|
|
</div>
|