I am working on some basic page right now. I never used Blade components before.
The page is divided into 2 sections: Left and Right.
On the right side, there is a form that has a few "steps" before reaching the Confirm button.
The flow is that a user can click next or previous on this section to modify his selections/inputs until he wants to send the data.
This form on the right section has 3 steps, so on every step there are different form inputs.
What I would do normally is to either have the 3 steps hard coded in the Blade file, and then use JS to just hide or show each step, or use JS to construct the elements and use something like innerHTML or createElement.
But can Blade components do the job as well? So that I will make a new components for each "step", which will be the form step and then somehow display it when the user click Next or Previous? So that I won't have all the mess in one Blade file but it would be separated into reusable components?