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', $airlines, null , ['class' => 'form-control select2']) !!}
@if ($errors->has('home_airport_id'))
{{ $errors->first('home_airport_id') }}
@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
@include('layouts.default.auth.toc')
By registering, you agree to the Term and Conditions
{!! Form::submit('Register!', ['class' => 'btn btn-primary']) !!}