@extends('themes.default1.installer.layout.installer') @section('license') done @stop @section('environment') done @stop @section('database') done @stop @section('locale') active @stop @section('content')
{!! 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]) !!} |
{!! Form::text('username',null,['style' =>'margin-left:195px', 'required' => true]) !!} | ||
{!! Form::label('date',Lang::get('lang.date_time')) !!} |
|
|
{!! Form::label('time_zone',Lang::get('lang.time_zone')) !!} | 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::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"]); !!}
|