39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
|
<!-- ICAO Field -->
|
||
|
<div class="form-group col-sm-6">
|
||
|
{!! Form::label('icao', 'ICAO:') !!}
|
||
|
{!! Form::text('icao', null, ['class' => 'form-control']) !!}
|
||
|
</div>
|
||
|
|
||
|
<!-- Name Field -->
|
||
|
<div class="form-group col-sm-6">
|
||
|
{!! Form::label('name', 'Name:') !!}
|
||
|
{!! Form::text('name', null, ['class' => 'form-control']) !!}
|
||
|
</div>
|
||
|
|
||
|
<!-- Full Name Field -->
|
||
|
<div class="form-group col-sm-6">
|
||
|
{!! Form::label('full_name', 'Full Name:') !!}
|
||
|
{!! Form::text('full_name', null, ['class' => 'form-control']) !!}
|
||
|
</div>
|
||
|
|
||
|
<!-- Registration Field -->
|
||
|
<div class="form-group col-sm-6">
|
||
|
{!! Form::label('registration', 'Registration:') !!}
|
||
|
{!! Form::text('registration', null, ['class' => 'form-control']) !!}
|
||
|
</div>
|
||
|
|
||
|
<!-- Active Field -->
|
||
|
<div class="form-group col-sm-6">
|
||
|
{!! Form::label('active', 'Active:') !!}
|
||
|
<label class="checkbox-inline">
|
||
|
{!! Form::hidden('active', false) !!}
|
||
|
{!! Form::checkbox('active', '1', null) !!} 1
|
||
|
</label>
|
||
|
</div>
|
||
|
|
||
|
<!-- Submit Field -->
|
||
|
<div class="form-group col-sm-12">
|
||
|
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!}
|
||
|
<a href="{!! route('admin.aircraft.index') !!}" class="btn btn-default">Cancel</a>
|
||
|
</div>
|