@extends('admin.layout') @section('title', 'Edit User') @section('content')
Edit User: {{ $user->name }}
Back to Users
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
Leave empty to keep current password @error('password')
{{ $message }}
@enderror
User Information
Created:
{{ $user->created_at->format('d/m/Y H:i') }}
Last Updated:
{{ $user->updated_at->format('d/m/Y H:i') }}
User ID:
#{{ $user->id }}
@endsection