{!! Form::label('airport_id', 'Location') !!}

@if($aircraft->airport) {!! $aircraft->airport->icao !!}

@endif
{{----}}

{!! Form::label('name', 'Name') !!}

{!! $aircraft->name !!}

{{----}}

{!! Form::label('registration', 'Registration') !!}/ {!! Form::label('tail_number', 'Tail Number') !!}

{!! $aircraft->registration !!}/{!! $aircraft->tail_number !!}

{{----}}

{!! Form::label('active', 'Active:') !!}

@if ($aircraft->active == '1') yes @else no @endif