Missing styles on form within livewire component
Hi All -
Hi there. This is for Filament 4 and Laravel 12. I am attempting to use a filament form in a custom livewire component that is not within a panel (basically a public registration form). I was able to successfully create the form using
php artisan make:filament-livewire-form RegistrationForm
and the fields display when I hit the route. The issue I am having is that I am not seeing any styles. I have re-ran npm build several times and made sure browser caching is disabled.
layout file is pretty basic:
Thanks in advance!Solution:Jump to solution
Did you add this to your app.css?
```css
/* Required by all components */
@import '../../vendor/filament/support/resources/css/index.css';...
2 Replies
Solution
Did you add this to your app.css?
I must have missed that in the docs. I will give it a shot! Thanks