@extends('layouts.admin.app') @section('title') Create User @stop @section('main')
{!! Form::open(['method'=>'POST','action' => 'AdminUsersController@store']) !!}
{!! Form::label('first_name', 'First Name') !!} {!! Form::text('first_name', null, ['class'=>'form-control', 'placeholder'=>'First Name']) !!} @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
{!! Form::label('last_name', 'Last Name') !!} {!! Form::text('last_name', null, ['class'=>'form-control', 'placeholder' =>'Last Name']) !!} @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{!! Form::label('email', 'Email') !!} {!! Form::email('email', null, ['class'=>'form-control', 'placeholder' =>'Email']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::label('phone_number', 'Phone Number') !!} {!! Form::text('phone_number', null, ['class'=>'form-control', 'placeholder' =>'Phone Number']) !!} @if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
{!! Form::label('company', 'Company') !!} {!! Form::text('company', null, ['class'=>'form-control', 'placeholder' =>'Company']) !!} @if ($errors->has('company')) {{ $errors->first('company') }} @endif
{!! Form::label('address', 'Address') !!} {!! Form::text('address', null, ['class'=>'form-control', 'placeholder' =>'Address']) !!} @if ($errors->has('address')) {{ $errors->first('address') }} @endif
{!! Form::label('city', 'City') !!} {!! Form::text('city', null, ['class'=>'form-control', 'placeholder' =>'City']) !!} @if ($errors->has('city')) {{ $errors->first('city') }} @endif
{!! Form::label('state_id', 'State') !!} {!! Form::select('state_id', $states, null,['class'=>'form-control', 'placeholder'=>'Select State']) !!} @if ($errors->has('state_id')) {{ $errors->first('state_id') }} @endif
{!! Form::label('zip', 'Zip Code') !!} {!! Form::text('zip', null, ['class'=>'form-control', 'placeholder' =>'Zip Code']) !!} @if ($errors->has('zip')) {{ $errors->first('zip') }} @endif
{!! Form::label('task', 'Select Task Department(s)') !!}
Put only if ROLE is neither Admin or Customer {!! Form::select('task[]', $departments, [], ['class'=>'form-control select2','multiple' => 'multiple','data-placeholder'=>'Select Departments','style'=>'width:100%;overflow:auto']); !!}
{!! Form::label('role_id', 'Role') !!} {!! Form::select('role_id', $roles, null,['class'=>'form-control', 'placeholder'=>'Select Role']) !!} @if ($errors->has('role_id')) {{ $errors->first('role_id') }} @endif
{!! Form::label('password', 'Password') !!} {!! Form::password('password', ['class'=>'form-control', 'placeholder' =>'Password']) !!} @if ($errors->has('password')) {{ $errors->first('password') }} @endif
{!! Form::label('password_confirmation', 'Confirm Password') !!} {!! Form::password('password_confirmation', ['class'=>'form-control', 'placeholder' =>'Confirm password']) !!} @if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
{!! Form::submit('CreateUser', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop @section('footer') @stop