{!! Form::label('icao', 'ICAO:') !!}

{!! $airport->icao !!}

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

{!! $airport->name !!}

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

{!! $airport->location !!}

{!! Form::label('lat', 'Latitude:') !!}

{!! $airport->lat !!}

{!! Form::label('lon', 'Longitude:') !!}

{!! $airport->lon !!}

{!! Form::label('created_at', 'Created At:') !!}

{!! $airport->created_at !!}

{!! Form::label('updated_at', 'Updated At:') !!}

{!! $airport->updated_at !!}