@lang('common.register')
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('airline_id'))
{{ $errors->first('airline_id') }}
@endif
@if ($errors->has('home_airport_id'))
{{ $errors->first('home_airport_id') }}
@endif
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
@if ($errors->has('timezone'))
{{ $errors->first('timezone') }}
@endif
@if (setting('pilots.allow_transfer_hours') === true)
@if ($errors->has('transfer_time'))
{{ $errors->first('transfer_time') }}
@endif
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
@if($userFields)
@foreach($userFields as $field)
@if ($errors->has('field_'.$field->slug))
{{ $errors->first('field_'.$field->slug) }}
@endif
@endforeach
@endif
@if($captcha['enabled'] === true)
@if ($errors->has('h-captcha-response'))
{{ $errors->first('h-captcha-response') }}
@endif
@endif
@if($invite)
@endif
@include('auth.toc')