@extends('app') @section('title', __('auth.register')) @section('content')
{{ $errors->first('name') }}
@endif{{ $errors->first('email') }}
@endif{{ $errors->first('airline_id') }}
@endif{{ $errors->first('home_airport_id') }}
@endif{{ $errors->first('country') }}
@endif{{ $errors->first('timezone') }}
@endif @if (setting('pilots.allow_transfer_hours') === true){{ $errors->first('transfer_time') }}
@endif @endif{{ $errors->first('password') }}
@endif{{ $errors->first('password_confirmation') }}
@endif @if(config('captcha.enabled')){{ $errors->first('g-recaptcha-response') }}
@endif @endif|
{{ Form::hidden('toc_accepted', 0, false) }}
{{ Form::checkbox('toc_accepted', 1, null, ['id' => 'toc_accepted']) }}
|
@if ($errors->has('toc_accepted'))
{{ $errors->first('toc_accepted') }} @endif |
|
{{ Form::hidden('opt_in', 0, false) }}
{{ Form::checkbox('opt_in', 1, null) }}
|