Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

abdosarmini's avatar

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>
0 likes
4 replies
abdosarmini's avatar

@jaseofspades88 I managed to put the form in a public page but my main problem is the styling. You can see the image in the main post.

yebor974's avatar

I wrote a post about using filament in public facing. Maybe this will help you: filamentmastery.com/articles/guide-to-using-filament-components-in-public-facing-pages

Seems like you're missing some Tailwind setup

Please or to participate in this conversation.