@extends('admin.dashboard') @section('user-content')

Edit User

Update user information and account type. If you want to reset the user's password, use the "Reset Password" button.

@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
@error('account_type')

{{ $message }}

@enderror
Cancel

User Actions

Additional actions for managing this user.

@if($user->id !== auth()->id())
@endif
@push('scripts') @endpush @endsection