Everything you need is documented here: https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme. It's easy to create a custom theme and plug it in to your Filament app.
Apr 30, 2025
4
Level 2
Filament Styles Not Being Applied
Hi. I am trying to build a public form using already built Filament components. It worked but the Filament styles are missing. I tried to search and apply all solutions on internet or AI but nothing worked. You can see this image here.
{{-- resources/views/forms/public.blade.php --}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ $form->name }}</title>
@vite(['resources/css/app.css', 'resources/js/app.js']) {{-- if using Vite --}}
{{-- filamentstyles --}}
@livewireStyles
@filamentStyles
</head>
<body class="mt-5 p-6">
<livewire:public-form :form="$form" />
@livewireScripts
@filamentScripts
</body>
</html>
Please or to participate in this conversation.