@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'])
|
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('hidden', 0) !!}
{!! Form::checkbox('analytics', 1, true, ['class' => 'form-control']) !!}
Allow collection of analytics. They're anonymized, and helps us 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() !!}