@extends('layouts.app') @section('title', 'Customer Dashboard — Divine Drops') @section('content') {{-- Account Welcome Header --}} {{ substr($user->name, 0, 1) }} Welcome, {{ $user->name }} {{ $user->email }} · Member since {{ $user->created_at ? $user->created_at->format('M Y') : '2026' }} Verified Customer @csrf Sign Out Account {{-- Main Layout Grid --}} {{-- Left Navigation Sidebar --}} {{-- Right Content Cards --}} {{-- 1. My Orders Section --}} My Orders History Track status and view tax invoices for past purchases. {{ $orders->count() }} {{ Str::plural('Order', $orders->count()) }} @if($orders->isEmpty()) No orders placed yet Explore our luxury Indian botanical skincare formulations. Explore Catalog @else @foreach($orders as $ord) {{-- Order Card Header --}} Order #{{ $ord->order_number }} Placed on {{ $ord->created_at ? $ord->created_at->format('M d, Y') : 'Recent' }} {{ $ord->order_status }} {{-- Items Breakdown --}} @foreach($ord->items as $item) {{ $item->product_name }} Size: {{ $item->size ?? 'Standard' }} · Qty: {{ $item->quantity }} ₹{{ number_format($item->subtotal, 2) }} @endforeach {{-- Order Card Footer --}} Payment: {{ $ord->payment_method }} ({{ ucfirst($ord->payment_status) }}) Track Package Total Paid ₹{{ number_format($ord->total_amount, 2) }} @endforeach @endif {{-- 2. Personal Profile Section --}} Personal Profile Update your basic account credentials and phone number. @csrf Full Name * Email Address * Mobile Phone Number Save Profile Details {{-- 3. Manage Address Section --}} Manage Shipping Address Default address used for 1-click checkout delivery. @csrf Street Address * {{ old('address', $user->address) }} City * State * Pincode * Save Shipping Address {{-- 4. Change Password Section --}} Security & Change Password Ensure your account uses a strong, unique password. @csrf Current Password * New Password (Min 8 characters) * Confirm New Password * Update Password @endsection
Track status and view tax invoices for past purchases.
Explore our luxury Indian botanical skincare formulations.
Update your basic account credentials and phone number.
Default address used for 1-click checkout delivery.
Ensure your account uses a strong, unique password.