@extends('themes.default1.installer.layout.installer') @section('license') done @stop @section('environment') done @stop @section('database') done @stop @section('locale') active @stop @section('content')

Locale Information

{!! Form::open(['url'=>route('postaccount'), 'id' => 'postaccount']) !!} @if($errors->first('firstname')||$errors->first('Lastname')||$errors->first('email')||$errors->first('username')||$errors->first('password')||$errors->first('confirm_password'))
@if($errors->first('firstname')) {!! $errors->first('firstname', ':message') !!}
@endif @if($errors->first('Lastname')) {!! $errors->first('Lastname', ':message') !!}
@endif @if($errors->first('email')) {!! $errors->first('email', ':message') !!}
@endif @if($errors->first('username')) {!! $errors->first('username', ':message') !!}
@endif @if($errors->first('password')) {!! $errors->first('password', ':message') !!}
@endif @if($errors->first('confirm_password')) {!! $errors->first('confirm_password', ':message') !!}

@endif
@endif @if(Session::has('fails'))
{{Session::get('fails')}}

@endif

Welcome to the five-minute Faveo installation process! Just fill in the information below.

Personal Information

Please provide the following information. Don’t worry, you can always change these settings later.

{!! Form::text('firstname',null,['style' =>'margin-left:250px', 'required' => true]) !!}
{!! Form::text('Lastname',null,['style' =>'margin-left:250px', 'required' => true]) !!}
{!! Form::email('email',null,['style' =>'margin-left:250px', 'required' => true]) !!}

Login Information

{!! Form::text('username',null,['style' =>'margin-left:195px', 'required' => true]) !!}

Locale Information

get(); // foreach ($timezonesList as $timezone) { $location = $timezone->location; $start = strpos($location, '('); $end = strpos($location, ')', $start + 1); $length = $end - $start; $result = substr($location, $start + 1, $length - 1); $display[]=(['id'=>$timezone->name ,'name'=> '('.$result.')'.' '.$timezone->name]); } //for display $timezones = array_column($display,'name','id'); ?>
{!! Form::label('date',Lang::get('lang.date_time')) !!}
{!! Form::label('time_zone',Lang::get('lang.time_zone')) !!}
{!! Form::select('timezone', [Lang::get('lang.choose')=>$timezones],null,['class' => 'selectpicker chosen-select','required','data-live-search'=>'true','data-live-search-placeholder'=>'Search','style'=>'width:295px;']) !!}
{!! Form::label('language',Lang::get('lang.language')) !!}
{!! Form::select('language', $show, 'en', ["class"=> "chosen-select", "style"=>"width:295px;", "tabindex"=>"2"]); !!}


Previous

@stop