F
Filament8mo ago
krkmo

validation style

The application has lost the red validation styles in the form, they used to appear but not anymore. It only shows me the native ones of the browser
No description
2 Replies
awcodes
awcodes8mo ago
If you use things like ->required() it will add browser validation. It saves unnecessary server requests. But if you want to let the server handle all the validation you should use ->rules() instead.
krkmo
krkmo8mo ago
@awcodes Okay, thank you very much.