@csrf
{{-- Client --}}
{{-- Product --}}
{{-- Customer Type --}}
{{-- Individual Fields --}}
{{-- Business Fields --}}
Business Customer Details
{{-- Business document uploads (names must match controller expectations) --}}
@php
$uploads = [
['certificate_incorporation', $customer->certificate_incorporation ?? null],
['business_license', $customer->business_license ?? null],
['company_profile', $customer->company_profile ?? null],
];
@endphp
@foreach ($uploads as [$name, $existingFile])
@php $fileId = str_replace('_', '-', $name); @endphp
@endforeach
{{-- Submit + Cancel --}}