Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

leostereo's avatar

Passing data through wizard form.

Hello guys. Im creating a "wizard" fashion menu. So on every step , user is updating and adding some info. In order to gather all the data at the end of the screens I need , in the current (blade view) screen to add the hiden inputs from prevous screen and so ... until the last screen of the wizard. Im I clear ? Is there a better way to achieve this ? Regards.

0 likes
1 reply
MohamedTammam's avatar

There are a lot of ways, here's some of what I know.

  1. Make it one form and toggle every step using Javascript ( you might use Vue for that)
  2. Handle it using Livewire to keep remember that state of every step
  3. Submit every step to go to the next one and store each step value in the session.

Please or to participate in this conversation.