© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
13 replies
Reda

Hide "save changes" button in form wizard

I have made an auto save form.
But i don't know how to hide the "save changes" button, because it is not necessary in my case
image.png
Solution
I think instead of using
HasWizard
HasWizard
trait, you could use the
Wizard
Wizard
field in the pages or resource:

public function form(Form $form): Form
{
    return $form->schema([
        Wizard::make([
            Step::make('step1')
                ->schema([
                  ...
                ]),
            Step::make('step2')
                ->schema([
                    ...
                ]),
        ]),
    ]);
}
public function form(Form $form): Form
{
    return $form->schema([
        Wizard::make([
            Step::make('step1')
                ->schema([
                  ...
                ]),
            Step::make('step2')
                ->schema([
                    ...
                ]),
        ]),
    ]);
}
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Hide create button in a form with wizard
FilamentFFilament / ❓┊help
2y ago
Hide submit button on wizard
FilamentFFilament / ❓┊help
2y ago
Hide create button on resource creation form with wizard
FilamentFFilament / ❓┊help
3y ago
Disable "Save changes" button
FilamentFFilament / ❓┊help
3y ago