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

umairparacha's avatar

How to customize the layout of auth pages in laravel filament 3

I want to customize the layout of the register page and login pages in Filament 3.

My goal is to use a different layout for the register page and a different layout for the login page.

Right now it uses simple.blade.php. How I can do this?

0 likes
1 reply
umairparacha's avatar
umairparacha
OP
Best Answer
Level 7

I found a way to do this. We can use

protected static string $layout = 'filament-panels::components.layout.auth';

On the page class, To set the layout that we want to use.

1 like

Please or to participate in this conversation.