lucosius Hello there, I'm about to launch my first Flarum community board but 5 minutes before I faced an unexpected problems. One of my teammate with the name Žilvinas tried to create his account but he failed. He wanted to use his name as username but he wasn't able to register with Ž that is used in our language. I wondering how can I fix this problem because it's gone be a big problem for our visitors to register... Thanks for help!
luceos lucosius You can override the UserValidator, this requires a local extender. So far there are no out of the box solutions with existing extensions to implement this for you.
lucosius I changed regex line to this: 'username' => [ 'required', 'regex:/^[\p{L}\p{N}]+$/i', So now I can change usernames with the symbols that I want but it's still not working in registration.
luceos lucosius I changed regex line to this I hope you didn't edit any files in vendor, you should use the local extender. Otherwise you'd have to re-apply your changes on each composer update.