Using this code:
<?= $form->field($model, 'username') ?>
would return a specific HTML containing a set of divs, text etc.
Let's say I don't want to print out the label "Username" Above the input field, and maybe I want to add some HTML code for this input (maybe a div next to the input field..) what is the best way to do this?
Do I need to edit the class/file that is actually responsible for the output of this function?