@extends('layouts.app') @section('title', 'Edit Customer') @section('breadcrumb') @endsection @section('content')
Customer Details
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
is_active) ? 'checked' : '' }}>
Cancel
Current Status
Current Due৳{{ number_format($customer->current_due, 2) }}
Total Sales{{ $customer->sales()->count() }}
Member Since{{ $customer->created_at->format('d M Y') }}
Changing opening balance does not automatically adjust current due. Use the payments system to record transactions.
@endsection