How do I create a blank landing page filament v3 just like the login page but without a form

how do I create a blank landing page in v3, I would like to a one page just like login or register page but without forms.
4 Replies
Patrick Boivin
I think you can create a custom page and switch to the 'simple' layout instead of the default
protected static string $layout = 'filament-panels::components.layout.simple';
protected static string $layout = 'filament-panels::components.layout.simple';
weadonyo
weadonyoOP2y ago
it worked, thanks Patrick, my question how do I create a page that is not auth guarded by filament, just like login page, the page requires me to login
josef
josef2y ago
Why do you need filament for that page? Sounds like you want to create a page that has nothing to do with filament. Why not just create it as a regular livewire or laravel page?

Did you find this page helpful?