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

Update client information and settings.

@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 ($client->profile)
Current image: Current profile
@endif Accepted formats: JPEG, PNG, JPG, GIF. Max size: 2MB
status) ? 'checked' : '' }}> @error('status')
{{ $message }}
@enderror
@error('av_points')
{{ $message }}
@enderror
@error('contribution_count')
{{ $message }}
@enderror
Username:

{{ $client->user_name }}

Created:

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

Last Updated:

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

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