{{ __('Edit User') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
{{ $user->type }}

User role cannot be changed after creation.

@if(in_array($user->type, ['Manager', 'Agent']))
@endif
{{ $user->status->value }}

Use the toggle button in the user list to change status.

{{ $user->created_at->format('F d, Y \a\t g:i A') }}
Cancel