Validate field inputs - custom error message

Is there a way to add a custom error message on the RegEx should match a specific pattern?

Screenshot 2024-09-09 at 14.58.26

For anyone needing a regex that matches and capital letters in a valid email address it is:
Screenshot 2024-09-09 at 15.01.06

[1]+@[a-z0-9.-]+.[a-z]{2,}$


  1. a-z0-9._%± ↩︎