@extends('app') @section('title', __('auth.register')) @php $only_hubs = ($hubs_only === true) ? 'hubs_only' : null; @endphp @section('content')
@csrf
@lang('common.register')
{{-- Form Fields --}}
@lang('auth.fullname')
@lang('auth.emailaddress')
@lang('common.airline')
@lang('airports.home')
@lang('common.country')
@lang('common.timezone')
@if(setting('pilots.allow_transfer_hours') === true)
@lang('auth.transferhours')
@endif
@lang('auth.password')
@lang('passwords.confirm')
@if($userFields) @foreach($userFields as $field)
{{ $field->name }} @if(filled($field->description)) @endif @if(in_array(strtoupper($field->name), ['IVAO', 'IVAO ID', 'IVAO CID', 'VATSIM', 'VATSIM ID', 'VATSIM CID'])) @else @endif
@endforeach @endif @if(isset($invite) && $invite) @endif
{{-- Validation Responses --}} @if($errors->any()) @endif {{-- Captcha --}} @if($captcha['enabled'] === true) @endif
@endsection @section('scripts') @parent @if($captcha['enabled']) @endif @include('scripts.airport_search') @endsection