There are other questions such as this, which suggest that I can add a class as follows:
<?= $form->field($model, 'name_pu')->textInput(['maxlength' => true, 'class' => 'punjabi']) ?>
**THAT WORKS BUT **
but this replaces the form-control
class given by bootstrap, which I don't want.
How can I ADD my own class, so as to get this result
<input type="text" id="regs-name_pu" class="form-control punjabi" name="Regs[name_pu]" maxlength="100">