@extends('admin::layouts.admin')
@section('title', 'Assign User Role')
@section('content')
@if($errors->any())
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@error('user_id')
{{ $message }}
@enderror
Select the user to assign the role to.
@error('role_id')
{{ $message }}
@enderror
Select the role to assign to the user.
@error('description')
{{ $message }}
@enderror
Optional: Provide a reason or note for this role assignment.
@endsection