Register
{{ Form::text('name', null, ['class' => 'form-control']) }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ Form::text('email', null, ['class' => 'form-control']) }}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ Form::select('airline_id', $airlines, null , ['class' => 'form-control select2']) }}
@if ($errors->has('airline_id'))
{{ $errors->first('airline_id') }}
@endif
{{ Form::select('home_airport_id', $airports, null , ['class' => 'form-control select2']) }}
@if ($errors->has('home_airport_id'))
{{ $errors->first('home_airport_id') }}
@endif
{{ Form::select('timezone', $timezones, null, ['id'=>'timezone', 'class' => 'form-control select2' ]) }}
@if ($errors->has('timezone'))
{{ $errors->first('timezone') }}
@endif
{{ Form::password('password', ['class' => 'form-control']) }}
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{{ Form::password('password_confirmation', ['class' => 'form-control']) }}
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
@if(config('captcha.enabled'))
{!! NoCaptcha::display(config('captcha.attributes')) !!}
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
@endif
@include('auth.toc')
By registering, you agree to the Term and Conditions
{{ Form::submit('Register!', ['class' => 'btn btn-primary']) }}