Change the location of the buttons

How can I put the "Send & Submit" button next to the "Create" button. I use getFormActions for "Send and Submit" actions.

protected function getFormActions(): array { $actions[] = \Filament\Pages\Actions\Action::make('send_and_submit') ->label('Send & Submit')->action(function (){ //some functions }); return array_merge(parent::getFormActions(),$actions); }
miain.png
Was this page helpful?