Edit User: {{ $user->name }}

Update user information and account settings

@if($user->id === auth()->id())

Editing Your Own Account

You are editing your own admin account. Use caution when changing your role or permissions.

@endif
@csrf @method('PUT')

Basic Information

@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('phone')

{{ $message }}

@enderror

Account Settings

@error('role')

{{ $message }}

@enderror

Client: Can book golfers Golfer: Can accept bookings Admin: Full system access

Change Password

Leave blank to keep the current password

@error('password')

{{ $message }}

@enderror

Minimum 8 characters

Cancel

Important Notes

  • Changing a user's role will affect their access permissions immediately
  • If you change the role from Golfer to Client, their golfer profile will remain but be inactive
  • Email changes will require the user to verify their new email address
  • Password changes will log the user out of all sessions
@push('scripts') @endpush