@if(Session::has('message'))
{!! Form::close() !!}
@else
{{ Session::get('message') }}
@endif @if( count($errors) > 0) @foreach($errors->all() as $error)
{{ trans('labels.Error') }}:
{{ $error }}
@endforeach
@endif
@if(in_array("Add",$userManagement ))
{!! Form::open(array('url' =>'admin/add-new-user-management', 'method'=>'post', 'class' => 'form-horizontal', 'id'=>'addnewuser', 'enctype'=>'multipart/form-data')) !!}
{!! Form::text('name', '', array('class'=>'form-control', 'id'=>'name', 'required'=>'required')) !!}
{!! Form::text('account_name', '', array('class'=>'form-control', 'id'=>'account_name', 'required'=>'required')) !!}
{!! Form::text('unique_id', '', array('class'=>'form-control', 'id'=>'unique_id')) !!}
{!! Form::text('ip_address', '', array('class'=>'form-control', 'id'=>'ip_address', 'required'=>'required')) !!}
Please contact with SuperAdmin
@endif