@extends('installer::app') @section('title', 'User Setup') @section('content')
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'])
|
Airline Country |
{{ Form::select('airline_country', $countries, null, ['class' => 'form-control select2' ]) }}
@include('installer::flash/check_error', ['field' => 'airline_country'])
|
First User |
|
Name |
{{ Form::input('text', 'name', null, ['class' => 'form-control']) }}
@include('installer::flash/check_error', ['field' => 'name'])
|
{{ 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() }}