© 2026 Hedgehog Software, LLC
public static bool $formActionsAreSticky = true;
AppServiceProvider
public function boot(): void { Page::$formActionsAreSticky = true; }
app/Filament/Resources/Blog/Links/Pages/CreateLink.php
<?php namespace App\Filament\Resources\Blog\Links\Pages; use App\Filament\Resources\Blog\Links\LinkResource; use Filament\Resources\Pages\CreateRecord; use LaraZeus\SpatieTranslatable\Actions\LocaleSwitcher; use LaraZeus\SpatieTranslatable\Resources\Pages\CreateRecord\Concerns\Translatable; class CreateLink extends CreateRecord { use Translatable; protected static string $resource = LinkResource::class; public static bool $formActionsAreSticky = true; protected function getHeaderActions(): array { return [ LocaleSwitcher::make(), ]; } }