Is filament's profile page email validation broken?
The email field even accepts the string without .com or any extensions at the end.
hello@hell is a valid email.
1 Reply
It probably uses Laravel's
email
rule which is quite permissive. You maybe want to change that to email:rfc
and/or email:dns