{{ trans('Add New User') }}
@if( count($errors) > 0)
@foreach($errors->all() as $error)
{!! Form::close() !!}
@else
{{ trans('labels.Error') }}:
{{ $error }}
@endforeach
@endif
@if(in_array("Add",$User ))
{!! Form::open(array('url' =>'admin/add-new-user', 'method'=>'post', 'class' => 'form-horizontal', 'id'=>'addnewuser', 'enctype'=>'multipart/form-data')) !!}
{!! Form::text('first_name', '', array('class'=>'form-control', 'id'=>'first_name', 'required'=>'required')) !!}
{!! Form::text('last_name', '', array('class'=>'form-control', 'id'=>'last_name', 'required'=>'required')) !!}
{!! Form::email('email', '', array('class'=>'form-control', 'id'=>'email', 'required'=>'required')) !!}
{!! Form::text('emp_id', '', array('class'=>'form-control', 'id'=>'emp_id', 'required'=>'required')) !!}
{!! Form::text('extension_3cx', '', array('class'=>'form-control', 'id'=>'extension_3cx')) !!}
{!! Form::select('extension_name', ['' => 'Select', 'CSR' => 'CSR', 'BDR' => 'BDR', 'Technical' => 'Technical', 'VERIFIER' => 'VERIFIER', 'VOD' => 'VOD', 'L2' => 'L2', 'Backend' => 'Backend', 'ACTIVATION' => 'ACTIVATION'], null, ['class' => 'form-control', 'id' => 'extension_name']) !!}
Please contact with SuperAdmin
@endif