create a Group input with kartik select2 y un text input

How can I make a bootstrap group input that it has a kartik select2 and a text input inside.

Something like this? I’m not very sure.




    <div class="input-group">

      <span class="input-group-addon">

        <?= Select2::widget(...) ?>

      </span>

      <?= Html::textField(...) ?>

    </div>