@include('livewire.customers.create', [
'customerCategories' => $customerCategories ?? null,
'formAction' => route('customers.update', $customer),
'formMethod' => 'PUT',
'formId' => 'customer-form',
'submitLabel' => 'Update',
'customer' => $customer,
'redirectUrl' => route('customers.index'),
])
@endsection