Indian alphabet error
A user of mine tried to create a User and he inputted this JSON...
{
"email": "[email protected]",
"first_name": "נחמן ",
"last_name": "גולדווסר",
"mobile_phone": "(099)-999-9999",
"date_of_birth": "2000-06-24",
"gender": "Male"
}
It pass throught the required rule but in the controller the first_name and last_name were transformed to NULL, throwing an error in my database because first_name is NOT NULL
How can I interpret the indian alphabet??
1 Reply
Just tried this with Filament default Register form and I don't have any issues.