@lang('data.flightNumber')
@if ($errors->has('number_flight'))
{{ $errors->first('number_flight') }}
@endif
@lang('data.flightDate')
@if ($errors->has('date_flight'))
{{ $errors->first('date_flight') }}
@endif
@lang('data.flightArrive')
@if ($errors->has('date_arrive_flight'))
{{ $errors->first('date_arrive_flight') }}
@endif
@lang('data.destination')
@if ($errors->has('destination'))
{{ $errors->first('destination') }}
@endif
@lang('data.cameFrom')
@if ($errors->has('came_from'))
{{ $errors->first('came_from') }}
@endif
@lang('data.flightCompany')
@if ($errors->has('flight_company'))
{{ $errors->first('flight_company') }}
@endif
@lang('data.flightTime')
@if ($errors->has('flight_time'))
{{ $errors->first('flight_time') }}
@endif