@extends('layouts.app') @section('title', 'Edit User - Admin - TicketHub Central') @section('content')

Edit User

Modify account for {{ $user->name }}

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

{{ $message }}

@enderror
@error('username')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror

Leave empty to keep the existing password

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

You cannot remove your own admin privileges

@else

Admins can manage sites and users

@endif
Cancel
@endsection