How to reorder button on edit resource

Is it possible to reorder buttons on edit reource that mine primary button is right and cancel button is left
image.png
Solution
Very quick and simple way would be to edit the EditPage.php

and add:

    protected function getFormActions(): array
    {
        return array_reverse(parent::getFormActions());
    }
Was this page helpful?