PAGE_START hook not working.
Hi, I'm trying to customize my login page, I tries rewriting the whole blade but it didn't work the way I wanted.So I'm trying with render hook. I found that PAGE_START /PAGE_END can be scoped. But in my case thay are not working.Any ideas?
It does not work with the scope neither.
FilamentView::registerRenderHook(
// PanelsRenderHook::AUTH_LOGIN_FORM_BEFORE,
PanelsRenderHook::PAGE_START,
fn():View=>view('extra_login_head'),
// scopes:\App\Filament\Pages\Auth\LoginEdit::class,
);
FilamentView::registerRenderHook(
// PanelsRenderHook::AUTH_LOGIN_FORM_AFTER,
PanelsRenderHook::PAGE_END,
fn():View=>view('extra_login_foot'),
// scopes:\App\Filament\Pages\Auth\LoginEdit::class,
);It does not work with the scope neither.