@extends('layouts.app') @section('title', 'Edit Customer') @section('breadcrumb') @endsection @section('content')
@csrf @method('PUT')
{{-- Basic Information --}}
Basic Information
@error('name')
{{ $message }}
@enderror
{{-- Address Information --}}
Address
{{-- Notes --}}
Notes
{{-- Sidebar --}}
{{-- Customer Stats --}}
Customer Stats
Total Orders: {{ $customer->total_orders }}
Total Purchases: Rs. {{ number_format($customer->total_purchases, 2) }}
Member Since: {{ $customer->created_at->format('M d, Y') }}
{{-- Credit Settings --}}
Credit Settings
{{-- Loyalty --}}
Loyalty Program
{{-- Status --}}
Status
is_active) ? 'checked' : '' }} id="statusSwitch">
{{-- Submit Button --}}
@push('styles') @endpush @endsection