Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maximishchenko/5d43377ac7f8e40b6240bc8a8fabf986 to your computer and use it in GitHub Desktop.
Save maximishchenko/5d43377ac7f8e40b6240bc8a8fabf986 to your computer and use it in GitHub Desktop.
Yii2_form_field_with_submit_button
<?php
echo $form->field($model, 'email', [
'template' => '<div class="input-group">{input}<span class="input-group-btn">'.
Html::submitButton(Yii::t('app', '{icon} Search', ['icon' => FA::icon('search')]), ['class' => 'btn btn-primary']).'</span></div>',
]);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment