profile_fields
On a new Wave installation ("laravel/framework": "^9.11", "php": "^8.0.2"), the Wave Admin's Profile Settings isn't working properly - no errors shown - no code was added. It doesn't save profile changes, and doesn't shows the "Success" message at the top. Note: The only change made before Migration was 'engine' => 'InnoDB ROW_FORMAT=DYNAMIC' on database.php. Otherwise, Migration shows an error.
On the same environment, in another VirtualHost, I have an older Wave version ("laravel/framework": "^8.0", "php": "^7.3|^8.0") and works okay. It accept and saves Profile Settings changes. It shows the "Success" message at the top.
I'm using Wampserver 3.2.6 - 64bit, Apache 2.4.51, PHP 8.1, MySQL 5.7.36, MariaDB 10.6.5.
Any ideas?
P.S: I have tried new installation many times.
Hi there,
Thank you for reporting this problem!
To fix this update line 29 in the wave/src/Http/Controllers/SettingsController.php
file and add nullable
to the avatar
validation, eg:
'avatar' => 'nullable|base64image'
I will submit a PR with a fix for this.
Let me know if you notice any other problems.
















Thank you bobby!
That fixed the issue. Also, I copied my profile_fields and works too!
No problem at all! Happy to hear that it is all working!















