Why does this not work?

The options on the field tag generates an error …




<?php echo $form->field($searchTerm, "page", ["class" => "smallInput"]); ?>



Error …

exception ‘ReflectionException’ with message ‘Class smallInput does not exist’

Do you have such a class? Is it global namespace as you’ve specified?

[‘options’ => [‘class’ => ‘smallInuput’]] for form-group class.

For the input class replace ‘options’ by ‘inputOptions’

http://www.yiiframework.com/doc-2.0/yii-widgets-activefield.html#$options-detail

This answer worked.

Thanks for your help and time guys.