@extends('installer::app') @section('title', 'User Setup') @section('content')
{!! Form::open(['route' => 'installer.usersetup', 'method' => 'POST']) !!} {{-- --}}

Airline Information

Airline ICAO

{!! Form::input('text', 'airline_icao', null, ['class' => 'form-control']) !!} @include('installer::flash/check_error', ['field' => 'airline_icao'])

Airline Name

{!! Form::input('text', 'airline_name', null, ['class' => 'form-control']) !!} @include('installer::flash/check_error', ['field' => 'airline_name'])

First User

Name

{!! Form::input('text', 'name', null, ['class' => 'form-control']) !!} @include('installer::flash/check_error', ['field' => 'name'])

Email

{!! Form::input('text', 'email', null, ['class' => 'form-control']) !!} @include('installer::flash/check_error', ['field' => 'email'])

Password

{!! Form::password('password', ['class' => 'form-control']) !!} @include('installer::flash/check_error', ['field' => 'password'])

Password Confirm

{!! Form::password('password_confirmation', ['class' => 'form-control']) !!} @include('installer::flash/check_error', ['field' => 'password_confirmation'])

Options

Analytics

{!! Form::hidden('analytics', 0) !!} {!! Form::checkbox('analytics', 1, true, ['class' => 'form-control']) !!}

Allows collection of analytics. They won't identify you, and helps us to track the PHP and database versions that are used, and help to figure out problems and slowdowns when vaCentral integration is enabled.

{!! Form::submit('Complete Setup >>', ['class' => 'btn btn-success']) !!}

{!! Form::close() !!}
@endsection