Hide close button in filament form
Is it possible to hide "Close" button in filament form?
Solution:Jump to solution
You could chuck this in the create page:
```php
protected function getCancelFormAction(): Action
{
return parent::getCancelFormAction()->visible(false);...
3 Replies