User Management

Manage system users and their role assignments

@if (session()->has('message'))
{{ session('message') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif
@forelse($users as $user) @empty @endforelse
User Email Organization Tenant Roles Status Joined Actions
@if ($user->profile_photo_url) {{ $user->name }} @else
{{ strtoupper(substr($user->name, 0, 2)) }}
@endif
{{ $user->name }}
@if ($user->current_team_id)
Team ID: {{ $user->current_team_id }}
@endif
{{ $user->email }}
@if ($user->email_verified_at)
Verified
@else
Unverified
@endif
@if ($user->tenant)
{{ $user->tenant->name }}
@else
No tenant
@endif
@forelse($user->roles as $role)
{{ $role->name }}
@empty
No roles assigned
@endforelse
@if ($user->email_verified_at)
Active
@else
Inactive
@endif
{{ $user->created_at->format('M d, Y') }}

No users found

Try adjusting your search or filters

{{ $users->links() }}
@if ($showRolesModal) @endif @if ($showDeleteModal) @endif @if ($showTenantModal) @endif