@extends('customer.dashboard.layout') @section('title', 'Profile Settings') @section('content')

Profile Settings

Manage your account information

Profile Information

@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
Email cannot be changed
@error('phone')
{{ $message }}
@enderror
@error('address_line_1')
{{ $message }}
@enderror
@error('address_line_2')
{{ $message }}
@enderror
@error('city')
{{ $message }}
@enderror
@error('state')
{{ $message }}
@enderror
@error('postal_code')
{{ $message }}
@enderror
@error('country')
{{ $message }}
@enderror

Change Password

@csrf @method('PUT')
@error('current_password')
{{ $message }}
@enderror
Minimum 8 characters @error('password')
{{ $message }}
@enderror

Account Information

Customer ID: #{{ $customer->id }}
Member Since: {{ $customer->created_at->format('F d, Y') }}
Account Type: {{ ucfirst($customer->customer_type) }}
Total Orders: {{ $customer->total_orders }}
@endsection