| 
<?php
 use yii\helpers\Html;
 use yii\widgets\ActiveForm;
 
 /**
 * @var yii\web\View $this
 * @var app\models\TestContactsSearch $model
 * @var yii\widgets\ActiveForm $form
 */
 ?>
 
 <div class="test-contacts-search">
 
 <?php $form = ActiveForm::begin([
 'action' => ['index'],
 'method' => 'get',
 ]); ?>
 
 <?= $form->field($model, 'id') ?>
 
 <?= $form->field($model, 'test_id') ?>
 
 <?= $form->field($model, 'phone') ?>
 
 <?= $form->field($model, 'email') ?>
 
 <div class="form-group">
 <?= Html::submitButton(Yii::t('app', 'Search'), ['class' => 'btn btn-primary']) ?>
 <?= Html::resetButton(Yii::t('app', 'Reset'), ['class' => 'btn btn-default']) ?>
 </div>
 
 <?php ActiveForm::end(); ?>
 
 </div>
 
 |