@if (session()->has('error'))
{{ session('error') }}
@endif
@if (session()->has('success'))
{{ session('success') }}
@endif
@if($selectedRole)
@if(count($users) > 0)
Showing {{ count($users) }} user(s)
@else
No users found for the selected role.
@endif
@endif