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

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

@endif
{{----}}

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

{!! $aircraft->name !!}

{{----}}

{!! Form::label('registration', 'Registration') !!}

{!! $aircraft->registration !!}

{{----}}

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

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