Custom Field Order

Code sample

//View code
use buttflattery\formwizard\FormWizard;
echo FormWizard::widget([
    'steps' => [
        [
            'model' => $shootsModel,
            'title' => 'My Shoots',
            'description' => 'Add your shoots',
            'formInfoText' => 'Fill all fields'
            'fieldOrder'=>['name','description','active']
        ],

    ]
]);
Fill all fields