Blame view

frontend/views/site/feedback.php 469 Bytes
b0f143c3   Yarik   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?php
  
  /* @var $this yii\web\View */
  /* @var $form yii\bootstrap\ActiveForm */
  /* @var $model \frontend\models\ContactForm */
  
  use yii\helpers\Html;
  use yii\bootstrap\ActiveForm;
  use yii\captcha\Captcha;
  
  $this->title = Yii::t('app', 'Feedback');
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  <div class="site-contact">
      <h1><?= Html::encode($this->title) ?></h1>
  	<?php foreach($forms as $oneform) {
  		echo $this->render('/option/_form', $oneform);
  	}?>
  </div>