I'm wondering how i can give the symfony form validation popups a custom style.
This popup shows up, if an input field is required and not filled.
I'm wondering how i can give the symfony form validation popups a custom style.
This popup shows up, if an input field is required and not filled.
I think this has nothing to do with Symfony itself.
Those popups are the default popups which appear if your input is set to required but empty. They differ from browser to browser. In your case you're using Chrome I guess?
<input type="text" id="isRequired" required="required">
Means the input is required and will show this message if it's empty on submit. Also see here for browser support. It was introduced in HTML5
Watch this demo for another example.
The required attribute marks any input/textarea as being required to have a value before the form can be submitted.