{{ strtoupper(substr($customer->name, 0, 1)) }}
Edit Customer: {{ $customer->name }}
Customer ID: #{{ str_pad($customer->id, 5, '0', STR_PAD_LEFT) }}
@if($customer->customer_type == 'walk-in')
Walk-in Customer
@elseif($customer->customer_type == 'regular')
Regular Customer
@else
Business Customer
@endif
@if($customer->vat_status == 'vatable')
VATable
@elseif($customer->vat_status == 'exempted')
VAT Exempted
@elseif($customer->vat_status == 'zero_rated')
Zero Rated
@endif
@if($customer->is_vat_registered)
VAT Registered
@endif
Please fix the following errors:
-
@foreach($errors->all() as $error)
- {{ $error }} @endforeach
Success
{{ session('success') }}