-
Tried in 3 different laravel 11 projects.
-
I have the full filament panel package installed
-
Created the custom livewire component from this page of the documentation: https://filamentphp.com/docs/3.x/forms/adding-a-form-to-a-livewire-component
<div>
<form wire:submit="create">
{{ $this->form }}
<button type="submit">
Submit
</button>
</form>
<x-filament-actions::modals />
</div>
-
The frontend is completely without styling.
-
My goal is for the default filament styling to be applied on the frontend as well.
-
I didn't go through the installation process for the form builder since I assumed by having the panel package installed, I don't need to make changes to tailwind config or vite and etc.