[ '/cabinet/users-add' ],
                        'id'     => 'users-add-form',
                    ]
                );
                $report = new Report();
            ?>
            
                field($report, 'user')
                              ->textInput();
                    echo $form->field($report, 'artist');
                    echo $form->field($report, 'intellectual_property_id')
                              ->dropDownList(
                                  IntellectualProperty::find()
                                                      ->asArray()
                                                      ->select(
                                                          [
                                                              'title',
                                                              'id',
                                                          ]
                                                      )
                                                      ->indexBy('id')
                                                      ->column()
                              );
                    echo $form->field($report, 'count')
                              ->textInput();
                    echo $form->field($report, 'sum')
                              ->textInput();
                ?>