2017-11-23 10:03:49 +08:00
|
|
|
<div class="row">
|
2018-01-04 02:47:12 +08:00
|
|
|
<!-- Name Field -->
|
2018-01-04 02:52:01 +08:00
|
|
|
<div class="form-group col-sm-6">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::label('name', 'Name:') }}
|
|
|
|
{{ Form::text('name', null, ['class' => 'form-control']) }}
|
2018-02-07 00:18:22 +08:00
|
|
|
<p class="text-danger">{{ $errors->first('name') }}</p>
|
2018-01-04 02:47:12 +08:00
|
|
|
</div>
|
2017-06-22 02:44:30 +08:00
|
|
|
|
2018-02-27 07:56:30 +08:00
|
|
|
<div class="form-group col-md-6">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::label('image_link', 'Image Link:') }}
|
|
|
|
{{ Form::text('image_link', null, ['class' => 'form-control']) }}
|
2018-02-27 07:56:30 +08:00
|
|
|
<p class="text-danger">{{ $errors->first('image_link') }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
2018-01-04 02:47:12 +08:00
|
|
|
<!-- Hours Field -->
|
2018-02-28 04:29:45 +08:00
|
|
|
<div class="form-group col-sm-4">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::label('hours', 'Hours:') }}
|
|
|
|
{{ Form::number('hours', null, ['class' => 'form-control']) }}
|
2018-02-07 00:18:22 +08:00
|
|
|
<p class="text-danger">{{ $errors->first('hours') }}</p>
|
2018-01-04 02:47:12 +08:00
|
|
|
</div>
|
2018-02-28 04:29:45 +08:00
|
|
|
|
|
|
|
<div class="form-group col-md-4">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::label('acars_base_pay_rate', 'ACARS Base Pay Rate:') }}
|
|
|
|
{{ Form::number('acars_base_pay_rate', null, ['min' => 0, 'class' => 'form-control']) }}
|
2018-02-28 04:29:45 +08:00
|
|
|
<p class="text-danger">{{ $errors->first('acars_base_pay_rate') }}</p>
|
|
|
|
@component('admin.components.info')
|
|
|
|
Base rate, per-flight hour, for ACARS PIREPs.
|
|
|
|
Can be adjusted via a multiplier on the subfleet.
|
|
|
|
@endcomponent
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-md-4">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::label('manual_base_pay_rate', 'Manual Base Pay Rate:') }}
|
|
|
|
{{ Form::number('manual_base_pay_rate', null, ['min' => 0, 'class' => 'form-control']) }}
|
2018-02-28 04:29:45 +08:00
|
|
|
<p class="text-danger">{{ $errors->first('manual_base_pay_rate') }}</p>
|
|
|
|
@component('admin.components.info')
|
|
|
|
Base rate, per-flight hour, for manually-filed PIREPs.
|
|
|
|
Can be adjusted via a multiplier on the subfleet.
|
|
|
|
@endcomponent
|
|
|
|
</div>
|
|
|
|
|
2017-06-22 02:44:30 +08:00
|
|
|
</div>
|
2018-01-04 02:47:12 +08:00
|
|
|
<div class="row">
|
|
|
|
<!-- Auto Approve Acars Field -->
|
2018-01-04 02:52:01 +08:00
|
|
|
<div class="form-group col-sm-4 text-center">
|
2018-01-04 02:47:12 +08:00
|
|
|
<div class="checkbox">
|
|
|
|
<label class="checkbox-inline">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::hidden('auto_approve_acars', false) }}
|
|
|
|
{{ Form::checkbox('auto_approve_acars') }}
|
|
|
|
{{ Form::label('auto_approve_acars', 'Auto Approve ACARS PIREPs') }}
|
2018-01-04 02:47:12 +08:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-06-22 02:44:30 +08:00
|
|
|
|
2018-01-04 02:47:12 +08:00
|
|
|
<!-- Auto Approve Manual Field -->
|
2018-01-04 02:52:01 +08:00
|
|
|
<div class="form-group col-sm-4 text-center">
|
2018-01-04 02:47:12 +08:00
|
|
|
<div class="checkbox">
|
|
|
|
<label class="checkbox-inline">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::hidden('auto_approve_manual', false) }}
|
|
|
|
{{ Form::checkbox('auto_approve_manual') }}
|
|
|
|
{{ Form::label('auto_approve_manual', 'Auto Approve Manual PIREPs') }}
|
2018-01-04 02:47:12 +08:00
|
|
|
</label>
|
|
|
|
</div>
|
2017-06-22 02:44:30 +08:00
|
|
|
</div>
|
|
|
|
|
2018-01-04 02:47:12 +08:00
|
|
|
<!-- Auto Promote Field -->
|
2018-01-04 02:52:01 +08:00
|
|
|
<div class="form-group col-sm-4 text-center">
|
2018-01-04 02:47:12 +08:00
|
|
|
<div class="checkbox">
|
|
|
|
<label class="checkbox-inline">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::hidden('auto_promote', false) }}
|
|
|
|
{{ Form::checkbox('auto_promote') }}
|
|
|
|
{{ Form::label('auto_promote', 'Auto Promote') }}
|
2018-01-04 02:47:12 +08:00
|
|
|
</label>
|
|
|
|
</div>
|
2017-06-22 02:44:30 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-01-04 02:47:12 +08:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
|
|
|
<div class="text-right">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) }}
|
2018-01-04 02:47:12 +08:00
|
|
|
</div>
|
2017-11-23 10:03:49 +08:00
|
|
|
</div>
|
|
|
|
</div>
|