Sometimes you want to double-check with users before they create a new record—especially when the action has real consequences. Adding a confirmation modal to the Create form can help prevent mistakes and ensure intent.
The trick
Here's how to show a confirmation modal before saving a record in a Filament CreatePage — no extra packages, just native Filament.
This replaces the default submit button with a custom action that includes a confirmation step. When users click "Create" a modal pops up asking for confirmation. Only then is the record saved.
Conclusion
Use this pattern to keep users informed and intentional. It's especially helpful when creating critical or irreversible data.