FilamentF
Filament16mo ago
dzoniia

Hide close button in filament form

Is it possible to hide "Close" button in filament form?
image.png
Solution
You could chuck this in the create page:
    protected function getCancelFormAction(): Action
    {
        return parent::getCancelFormAction()->visible(false);
    }
Was this page helpful?