From 8fdaeda0badef6f9ab454526484a6ed6d9a079f4 Mon Sep 17 00:00:00 2001 From: Konstantinos Arvanitakis Date: Fri, 25 Sep 2026 14:03:04 +0300 Subject: [PATCH] Fix: Correcting writable profile fields from vat_no to tax_identifier --- src/Customer/Services/CustomerAccountService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Customer/Services/CustomerAccountService.php b/src/Customer/Services/CustomerAccountService.php index 45d663c..86ed31a 100644 --- a/src/Customer/Services/CustomerAccountService.php +++ b/src/Customer/Services/CustomerAccountService.php @@ -72,7 +72,7 @@ class CustomerAccountService ]; private const WRITABLE_PROFILE_FIELDS = [ - 'title', 'first_name', 'last_name', 'company_name', 'vat_no', + 'title', 'first_name', 'last_name', 'company_name', 'tax_identifier', ]; public function customer(Authenticatable $user): ?Customer