How can I align the 'save changes' action button to the right side?

No description
1 Reply
Ayman Alhattami
Ayman AlhattamiOP2y ago
I found the solution, just override
$formActionsAlignment
$formActionsAlignment
in page class
namespace Filament\Pages\Page;

class ManageSettings extends Page
{
// ....
public static string $formActionsAlignment = 'end';
// ....
}
namespace Filament\Pages\Page;

class ManageSettings extends Page
{
// ....
public static string $formActionsAlignment = 'end';
// ....
}

Did you find this page helpful?