diverd I have checked once again AddressBook.php that ist located in following directory:
igniter\Extentions\user\Component\AdressBoook.php
You see here all code from line 40 until line 62.
When i use this Error message is changed into: ### Something went wrong and the page cannot be displayed
Line 40
{
$data = post();
$rules = [
['address.address_1', 'lang:igniter.user::default.account.label_address_1', 'required|min:3|max:128'],
['address.address_2', 'lang:igniter.user::default.account.label_address_2', 'max:128'],
['address.city', 'lang:igniter.user::default.account.label_city', 'required|min:2|max:128'],
['address.state', 'lang:igniter.user::default.account.label_state', 'max:128'],
[‘address.postcode’, ‘lang:igniter.user::default.account.label_postcode’, ‘required|min:2|max:11’],
['address.country_id', 'lang:igniter.user::default.account.label_country', 'required|integer'],
];
if (!$this->validatePasses($data, $rules))
return $this->onLoadAddForm();
$customer = Auth::customer();
$address = null;
if ($id = array_get($data, 'address.address_id'))
$address = Addresses_model::find($id);
if (!$address OR $address->customer_id != $customer->customer_id)
$address = Addresses_model::make();
Line 62