@extends('layouts.app') @section('title', 'Edit User - Tiqkets') @section('page-title', 'Edit User') @section('content')
Edit User Information
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('branch_id')
{{ $message }}
@enderror
@error('role')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
Leave password fields blank to keep current password.
Cancel
User Details
Current Status: {{ ucfirst($user->status) }}
Current Branch:

{{ $user->branch->branch_name ?? 'N/A' }}

Created:

{{ $user->created_at->format('M d, Y') }}

Last Updated:

{{ $user->updated_at->format('M d, Y') }}

Note

Changing the role or branch will affect the user's permissions and access levels.

@endsection