FilamentF
Filament2y ago
Wim

Form validation messages

I have a simple form in Filament v3, but the validation errors shows as a default browser message (see screenshot)
Is there a way I can show the validation errors in red under the form element or 1 single validation error box at the top of the page.

```
TextInput::make('name')
->label(__('products.name'))
->maxLength(255)
->required()
->validationAttribute('full name'),
image.png
Was this page helpful?