@extends('layouts/setup') @section('title') {{ trans('admin/users/general.create_user') }} :: @parent @stop {{-- Page content --}} @section('content')

{{ trans('admin/users/general.create_user_page_explanation') }}

{{ csrf_field() }}
{!! $errors->first('site_name', '') !!}
{!! Form::locales('locale', old('locale', "en-US"), 'select2') !!} {!! $errors->first('locale', '') !!}
{!! $errors->first('default_currency', '') !!}
{!! $errors->first('auto_increment_prefix', '') !!}
{!! $errors->first('zerofill_count', '') !!}
{{ trans('general.email_domain_help') }} {!! $errors->first('email_domain', '') !!}
{!! Form::username_format('email_format', old('email_format', 'filastname'), 'select2') !!} {!! $errors->first('email_format', '') !!}
{!! $errors->first('first_name', '') !!}
{!! $errors->first('last_name', '') !!}
{!! $errors->first('email', '') !!}
{!! $errors->first('username', '') !!}
{!! $errors->first('password', '') !!}
{!! $errors->first('password_confirmation', '') !!}
@stop @section('button')
@parent @stop