@extends('layouts.user') @section('title', 'Role Management') @section('content')

Role Management

Current Role
@if($currentRole)
{{ $currentRole->display_name }}

{{ $currentRole->description }}

@else

No current role selected

@endif
Available Roles
@if($availableRoles->count() > 0)
@foreach($availableRoles as $role)
{{ $role->display_name }}
{{ Str::limit($role->description, 30) }}
@if(!$currentRole || $currentRole->id !== $role->id) @else Active @endif
@endforeach
@else

No roles assigned

@endif
Role Information
About Roles

Roles determine your access level and permissions within the system. You can switch between your assigned roles at any time.

Role Switching

When you switch roles, your dashboard and available features will update to match your selected role's permissions.

@endsection @push('scripts') @endpush