@extends('layouts.admin') @section('title','Users') @section('page_title','') @section('page_level_css') @endsection @section('content')

USER MANAGEMENT

EXPLANATION: Use this component to create and manage Users withing LabPair. There are three possible "roles" withing the application. These include "Senior Administrator", "Administrator" and "Manager". "Senior Administrators" have complete access to all components in the application, including but not limited to, User Management, Reports and Content controls. "Administrators" have access to all components except USER MANAGEMENT and FEE MANAGEMENT. "Managers" are, in effect, individuals who have access to the administrator interface, except for User Management and any excluded components.

@php $url = getAURL('users'); if(isset($data->id)) {$url = getAURL('users/' . $data->id);} @endphp
Add / Edit Users (All Fields Mandatory)
@csrf @if(isset($data->id)) {{ method_field('PUT') }} @endif
Email address always represents the User's "User Name"
@if(! isset($data->id))
Password must be a minimum of (10) characters, and must contain (2) capital letters, and exactly (3) digits.

Example 1 : {{randomPasswordORCode(rand(10, 16), 3, 3, 3, 2)}}
Example 2 : {{randomPasswordORCode(rand(10, 16), 3, 3, 3, 2)}}
@endif
@isset($data->id)
Password must be a minimum of (10) characters, and must contain (2) capital letters, and exactly (3) digits.

Example 1 : {{randomPasswordORCode(rand(10, 16), 3, 3, 3, 2)}}
Example 2 : {{randomPasswordORCode(rand(10, 16), 3, 3, 3, 2)}}
@endisset
@isset($data->id) @endisset
User First Name Last Name Role Status
@endsection @section('page_level_js') @endsection @push('footerscript') @endpush