@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

{{ __('profile.avatarresize', [ 'width' => config('phpvms.avatar.width'), 'height' => config('phpvms.avatar.height'), ]) }}

@if ($errors->has('avatar'))
{{ $errors->first('avatar') }}
@endif

{{ __('profile.opt-in-descrip') }}

@if ($errors->has('opt_in'))
{{ $errors->first('opt_in') }}
@endif
@if ($errors->has('vatsim_id'))
{{ $errors->first('vatsim_id') }}
@endif
@if ($errors->has('ivao_id'))
{{ $errors->first('ivao_id') }}
@endif
{{-- Custom fields --}}
@foreach ($userFields as $field)
@if ($field->type === 'select') @else @endif @if ($errors->has('field_' . $field->slug))
{{ $errors->first('field_' . $field->slug) }}
@endif
@if ($loop->iteration % 2 == 0 && !$loop->last)
@endif @endforeach
{{ __('profile.changepassword') }}
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif