@extends('layouts.admin') @section('title', 'Edit User - EV Charging Network') @section('breadcrumb_title', 'Management') @section('breadcrumb_sub_title', 'Edit User') @section('page_title', 'Edit User') @section('content')
Edit User: {{ $user->full_name }}

Update user information and permissions.

@csrf @method('PUT')
@error('first_name')
{{ $message }}
@enderror
@error('last_name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('contact')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror Leave blank to keep current password
@error('password_confirmation')
{{ $message }}
@enderror
@error('profile')
{{ $message }}
@enderror @if ($user->profile)
Current image: Current profile
@endif Accepted formats: JPEG, PNG, JPG, GIF. Max size: 2MB
status) ? 'checked' : '' }}> @error('status')
{{ $message }}
@enderror
@error('roles')
{{ $message }}
@enderror Hold Ctrl/Cmd to select multiple roles
User ID:

{{ $user->id }}

Created:

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

Last Updated:

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

Cancel
@endsection @section('scripts') @endsection