[
                'class' => 'pjax_container forms-cabinet forms-1',
            ],
        ]
    );
?>
        
особисті данні
         'personal-form',
                    'action' => [ 'cabinet/personal' ],
                ]
            );
            echo $form->field(
                $userData,
                'surname',
                [
                    'options' => [
                        'class' => 'input-wrapp-320',
                    ],
                ]
            )
                      ->textInput();
            echo $form->field(
                $userData,
                'name',
                [
                    'options' => [
                        'class' => 'input-wrapp-320',
                    ],
                ]
            )
                      ->textInput();
            echo $form->field(
                $userData,
                'patronymic',
                [
                    'options' => [
                        'class' => 'input-wrapp-320',
                    ],
                ]
            )
                      ->textInput();
            echo $form->field(
                $userData,
                'phone',
                [
                    'options' => [
                        'class' => 'input-wrapp-320',
                    ],
                ]
            )
                      ->widget(
                          MaskedInput::className(),
                          [
                              'mask'    => '+38 (099) 999-99-99',
                              'options' => [
                                  'placeholder' => '+38 (0XX) XXX-XX-XX',
                              ],
                          ]
                      );
            echo $form->field(
                $userData,
                'email',
                [
                    'options' => [
                        'class' => 'input-wrapp-320',
                    ],
                ]
            )
                      ->textInput();
            echo $form->field(
                $userData,
                'inn',
                [
                    'options' => [
                        'class' => 'input-wrapp-320',
                    ],
                ]
            )
                      ->textInput();
        ?>