@include('admin/includes/front_alerts')
{!! Form::open([ 'url' => 'admin/users/create','files'=>true, 'id' => '']) !!}
{{--
--}}
{!! FORM::close() !!}
Add User
{{ Form::text('first_name', old('first_name') ,['class' => 'form-control','id'=>'first_name','required','maxlength' => '30']) }}
First Name is required
{{ Form::text('middle_name', old('middle_name') ,['class' => 'form-control top-margin','id'=>'middle_name','maxlength' => '30']) }}
Middle Name is optional
{{ Form::text('last_name', old('last_name') ,['class' => 'form-control top-margin','id'=>'last_name','required','maxlength' => '30']) }}
Last Name is required
{{ Form::text('suffix', old('suffix') ,['class' => 'form-control top-margin','id'=>'suffix','required','maxlength' => '10']) }}
Mr, Mrs, Jr, III
{{ Form::text('email', old('email') ,['class' => 'form-control top-margin','id'=>'email','required','maxlength' => '100']) }}
Email is required
{{ Form::text('confirmEmail', null ,['class' => 'form-control top-margin','id'=>'confirmEmail','required','maxlength' => '100']) }}
confirmation Email is required
{{ Form::text('ssn', old('ssn') ,['class' => 'form-control top-margin','id'=>'ssn','required','maxlength' => '11']) }}
123-45-6789
Password is required
Password Confirmation is required
{{ Form::text('contact', old('contact') ,['class' => 'form-control top-margin','id'=>'contact','required','maxlength' => '20' ,'onkeypress' => 'return event.charCode >= 48 && event.charCode <= 57']) }}
02071838750
{{ Form::text('dob', old('dob') ,['class' => 'form-control top-margin','id'=>'dob','required']) }}
Date of Birth is required
{{ Form::textarea('address', old('address'), ['class' => 'form-control','id'=>'address','data-error-container' => '#AdDescription' ,'rows' => '5','maxlength' => '120' ]) }}
{{ Form::text('city', old('city') ,['class' => 'form-control','id'=>'city','required','maxlength' => '30']) }}
City is required
{{ Form::text('state', old('state') ,['class' => 'form-control top-margin','id'=>'state','required','maxlength' => '30']) }}
State Name is required
{{ Form::text('zip', old('zip') ,['class' => 'form-control top-margin','id'=>'zip','required','maxlength' => '10']) }}
ZIP Code is required
{{ Form::text('eof', old('eof') ,['class' => 'form-control','id'=>'eof','maxlength' => '50']) }}
Employer on File if any
{{ Form::text('title', old('title') ,['class' => 'form-control top-margin','id'=>'title','maxlength' => '40']) }}
This Field is optional
{{ Form::radio('status', 1, (old('status') == '1' ? true : false), ['class' => 'md-radiobtn','id'=>'active']) }}
{{ Form::radio('status', 0, (old('status') == '0' ? true : false), ['class' => 'md-radiobtn','id'=>'deactive']) }}