@extends('dashboard.layouts.app')
@section('content')
Assign Roles to {{ $user->full_name ?? ($user->name ?? 'User') }}
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if ($user->exists)
@else
User not found.
@endif
@endsection