{{ __('Edit Customer') }}

{{ __('Back to customers') }}
@if (session('status'))
{{ session('status') }}
@endif
@csrf @method('PUT') @include('master-data.customers._form', ['customer' => $customer])
{{ __('Cancel') }} {{ __('Save Changes') }}
@can('delete', $customer)

{{ __('Delete this customer') }}

{{ __('This cannot be undone.') }}

@csrf @method('DELETE') {{ __('Delete Customer') }}
@endcan