@extends('layouts/setup') {{-- TODO: Translate --}} {{-- Page title --}} @section('title') Create a User :: @parent @stop {{-- Page content --}} @section('content')

This is the account information you'll use to access the site for the first time.

{{ csrf_field() }}
{{ Form::label('site_name', trans('general.site_name')) }} {{ Form::text('site_name', Request::old('site_name'), array('class' => 'form-control','placeholder' => 'Snipe-IT Asset Management')) }} {!! $errors->first('site_name', '') !!}
{{ Form::label('locale', trans('admin/settings/general.default_language')) }} {!! Form::locales('locale', Request::old('locale', "en"), 'select2') !!} {!! $errors->first('locale', '') !!}
{{ Form::label('default_currency', trans('admin/settings/general.default_currency')) }} {{ Form::text('default_currency', Request::old('default_currency'), array('class' => 'form-control','placeholder' => 'USD', 'maxlength'=>'3', 'style'=>'width: 60px;')) }} {!! $errors->first('default_currency', '') !!}
{{ Form::label('full_multiple_companies_support', trans('admin/settings/general.full_multiple_companies_support_text')) }}
{{ Form::label('auto_increment_prefix', trans('admin/settings/general.auto_increment_prefix')) }} {{ Form::text('auto_increment_prefix', Request::old('auto_increment_prefix'), array('class' => 'form-control')) }} {!! $errors->first('auto_increment_prefix', '') !!}
{{ Form::label('zerofill_count', trans('admin/settings/general.zerofill_count')) }} {{ Form::text('zerofill_count', Request::old('zerofill_count', 5), array('class' => 'form-control')) }} {!! $errors->first('zerofill_count', '') !!}
{{ Form::label('email_domain', trans('general.email_domain')) }} {{ Form::text('email_domain', Request::old('email_domain'), array('class' => 'form-control','placeholder' => 'example.com')) }} {{ trans('general.email_domain_help') }} {!! $errors->first('email_domain', '') !!}
{{ Form::label('email_format', trans('general.email_format')) }} {!! Form::username_format('email_format', old('email_format', 'filastname'), 'select2') !!} {!! $errors->first('email_format', '') !!}
{{ Form::label('first_name', trans('general.first_name')) }} {{ Form::text('first_name', old('first_name'), array('class' => 'form-control','placeholder' => 'Jane')) }} {!! $errors->first('first_name', '') !!}
{{ Form::label('last_name', trans('general.last_name')) }} {{ Form::text('last_name', old('last_name'), array('class' => 'form-control','placeholder' => 'Smith')) }} {!! $errors->first('last_name', '') !!}
{{ Form::label('email', trans('admin/users/table.email')) }} {{ Form::email('email', config('mail.from.address'), array('class' => 'form-control','placeholder' => 'you@example.com')) }} {!! $errors->first('email', '') !!}
{{ Form::label('username', trans('admin/users/table.username')) }} {{ Form::text('username', old('username'), array('class' => 'form-control','placeholder' => 'jsmith')) }} {!! $errors->first('username', '') !!}
{{ Form::label('password', trans('admin/users/table.password')) }} {{ Form::password('password', array('class' => 'form-control')) }} {!! $errors->first('password', '') !!}
{{ Form::label('password_confirmation', trans('admin/users/table.password_confirm')) }} {{ Form::password('password_confirmation', array('class' => 'form-control')) }} {!! $errors->first('password_confirmation', '') !!}
@stop @section('button')
@parent @stop