Wizard with Summary Step and Back Buttons

Filament 4/5
Also available in Filament 3 version

This project demonstrates Filament's Wizard form functionality with the ability to display contextual information on each step based on selections made in previous steps.

ICfFCmeiy4CbGRaKcSpF3XyoyvxBVW-metaRmlsYW1lbnRFeGFtcGxlcyBUaHVtYkJhc2UgKDIpLnBuZw==-

Get the Source Code:

Only This Example

$9

One-time payment

Full source code for Wizard with Summary Step and Back Buttons
Downloadable ZIP file with the source code
Lifetime access to this example
GitHub Sign in with GitHub to buy

Sign in first, then complete your $9 checkout.

Best value — all 174 examples

FilamentExamples Membership

$99 /year
or
$199 lifetime
Access to code of all 174 examples
Future new examples and updates included
FilaCheck Pro package licence included
MCP server included
View membership plans

30-day money-back guarantee

How it works

First, the HasWizard trait must be used to add a wizard form on the Create page.

use Filament\Resources\Pages\CreateRecord\Concerns\HasWizard;
use Filament\Resources\Pages\CreateRecord;
 
class CreateTask extends CreateRecord
{
use HasWizard;
 
protected static string $resource = TaskResource::class;
}

Steps for the wizard are added in the protected getSteps() method on the Create page class.

The FULL tutorial is available after the purchase: in the Readme file of the official repository you would get invited to.