<!-- Code Field -->
<div class="form-group">
{{ Form::label('icao', 'ICAO:') }}
<p>{{ $airlines->icao }}</p>
</div>
{{ Form::label('iata', 'IATA:') }}
<p>{{ $airlines->iata }}</p>
<!-- Name Field -->
{{ Form::label('name', 'Name:') }}
<p>{{ $airlines->name }}</p>
{{ Form::label('logo', 'Logo URL:') }}
<p>{{ $airlines->logo }}</p>
<!-- Active Field -->
{{ Form::label('active', 'Active:') }}
<p>{{ $airlines->active }}</p>
<!-- Created At Field -->
{{ Form::label('created_at', 'Created At:') }}
<p>{{ show_datetime($airlines->created_at) }}</p>
<!-- Updated At Field -->
{{ Form::label('updated_at', 'Updated At:') }}
<p>{{ show_datetime($airlines->updated_at) }}</p>