{{ Form::label('airline_id', 'Airline:') }} {{ Form::select('airline_id', $airlines_list, null , ['class' => 'form-control select2']) }}

{{ $errors->first('airline_id') }}

@component('admin.components.info') If an airline is selected, then the expense will only be applied to the selected airline, or flights in that airline. @endcomponent
{{ Form::label('type', 'Expense Type:') }} * {{ Form::select('type', $expense_types, null , ['class' => 'form-control select2']) }}

{{ $errors->first('type') }}

{{ Form::label('name', 'Expense Name:') }} {{ Form::text('name', null, ['class' => 'form-control']) }}

{{ $errors->first('name') }}

{{ Form::label('amount', 'Amount:') }} {{ Form::number('amount', null, ['class' => 'form-control', 'min' => 0]) }}

{{ $errors->first('amount') }}

{{ Form::label('multiplier', 'Multiplier:') }} @component('admin.components.info') If checked, with a PIREP, this expense can be modified by a multiplier on the subfleet. This is ignored for daily and monthly expenses @endcomponent
{{ Form::label('active', 'Active:') }}
{{ Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) }} Cancel