#When creating a custom livewire component, can I use the default styling for form components?

3 messages · Page 1 of 1 (latest)

agile needle
#
<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.

mossy frost
agile needle
#

composer require filament/forms:"^3.3" -W

so basically i should do everything here, excluding this command?