wanted to hide submit button of wizard from when form submitted and show thank you message
I am using filament wizard form in livewire screen on last step when form is submitted i wanted to show thankyou message with some content and hide the submit button when form is submitted
#form-builder
Solution:Jump to solution
the submit button is rendered on the last step. Maybe you could hide the wizard and show a custom message after the form is submitted:
```php
public bool $showMessage = false;
......
1 Reply
Solution
the submit button is rendered on the last step. Maybe you could hide the wizard and show a custom message after the form is submitted: