FIlament Wizard Layout in Livewire Component is missing Next button
Having a Wizard in Livewire component, i see two issues, and i presume is my fault, so asking for help and advise.
As you can see on photo, i found two problems so far.
1) There is no Next button. Ever. No matter how many steps i add. I suppose it shall be on bottom right side.
However, if i set to start from second step in wizard, i have a Back button displayed.
2) I want submit button to be rendered on last step(https://filamentphp.com/docs/3.x/forms/layout/wizard#rendering-a-submit-button-on-the-last-step) - see photo. I have Some unstyled button on the bottom of the form.
Any ideas how to sort out this?
As you can see on photo, i found two problems so far.
1) There is no Next button. Ever. No matter how many steps i add. I suppose it shall be on bottom right side.
However, if i set to start from second step in wizard, i have a Back button displayed.
2) I want submit button to be rendered on last step(https://filamentphp.com/docs/3.x/forms/layout/wizard#rendering-a-submit-button-on-the-last-step) - see photo. I have Some unstyled button on the bottom of the form.
Any ideas how to sort out this?

Solution
->submitAction(new HtmlString(Blade::render(
<<<'BLADE'
<x-filament::button
type="submit"
size="xl"
color="primary"
>
{{Label)}}
</x-filament::button>
BLADE
)))
->nextAction(
fn (Action $action) => $action->color('primary'),
),
<<<'BLADE'
<x-filament::button
type="submit"
size="xl"
color="primary"
>
{{Label)}}
</x-filament::button>
BLADE
)))
->nextAction(
fn (Action $action) => $action->color('primary'),
),