Form css not working
I created a fresh laravel app using Jetstream as starter kit and then installed MaryUi Library. After that i installed theFilament Form package for use it for my forms. Everything mostly working fine. But i can not see Validation messages in red color. Also Input fields border not showing any color like usual filament inputs.
This is my tailwind.config
Solution:Jump to solution
TextInput::make('title')->rules(['required'])
use this method to avoid browser validation messages........1 Reply
Solution
TextInput::make('title')->rules(['required'])
use this method to avoid browser validation messages.....