Theme Material(Vertical)
Code sample
//View code
use buttflattery\formwizard\FormWizard;
echo FormWizard::widget([
'theme' => FormWizard::THEME_MATERIAL_V,
'steps' => [
[
'model' => $shootsModel,
'title' => 'My Shoots',
'description' => 'Add your shoots',
'formInfoText' => 'Fill all fields'
],
[
'model' => $shootTagModel,
'title' => 'Shoot Tags',
'description' => 'Add your shoot tags',
'formInfoText' => 'Fill all fields'
],
]
]);