@extends('layouts.dashboard') @section('title', 'Users') @section('header', 'User Management') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')
Manage all system users and their roles
| User | Company | Roles | Status | Created | Actions | |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->phone ?? 'No phone' }}
|
{{ $user->email }} | {{ $user->company->name ?? 'N/A' }} |
@foreach($user->roles as $role)
{{ ucfirst($role->name) }}
@endforeach
|
{{ $user->email_verified_at ? 'Active' : 'Inactive' }} | {{ $user->created_at->format('M d, Y') }} | |
|
No users found Create your first user |
||||||