© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
9 replies
GeRaged | Niklas

Cant override Login Header Title

Why I can override the Heading but not the Title?

The "Cant override this text" should be "Test"
<?php

namespace App\Filament\Pages;

use Filament\Forms\Form;
use Filament\Pages\Auth\Login as BaseAuth;
use Illuminate\Contracts\Support\Htmlable;

class Login extends BaseAuth
{
    public function form(Form $form): Form
    {
        return $form
            ->schema([
                $this->getEmailFormComponent(),
                $this->getPasswordFormComponent(),
                $this->getRememberFormComponent(),
            ])
            ->statePath('data');
    }

    public function getHeading(): string|Htmlable
    {
        return 'ABC';
    }

    public function getTitle(): string
    {
        return 'Test';
    }

}
<?php

namespace App\Filament\Pages;

use Filament\Forms\Form;
use Filament\Pages\Auth\Login as BaseAuth;
use Illuminate\Contracts\Support\Htmlable;

class Login extends BaseAuth
{
    public function form(Form $form): Form
    {
        return $form
            ->schema([
                $this->getEmailFormComponent(),
                $this->getPasswordFormComponent(),
                $this->getRememberFormComponent(),
            ])
            ->statePath('data');
    }

    public function getHeading(): string|Htmlable
    {
        return 'ABC';
    }

    public function getTitle(): string
    {
        return 'Test';
    }

}
image.png
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

filter header title
FilamentFFilament / ❓┊help
8mo ago
Table Title Header
FilamentFFilament / ❓┊help
3y ago
Login Page Blade Override
FilamentFFilament / ❓┊help
3y ago
Override Global Search's category title
FilamentFFilament / ❓┊help
3y ago