c7f222e2
Artem
first
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
use yii\helpers\Html;
?>
<?= Html::beginTag('div',['class'=>'form-group'])?>
<?= Html::activeLabel($model,'seo_title',['class'=>'control-label'])?>
<?= Html::activeTextInput($model,'seo_title',['class'=>'form-control'])?>
<?= Html::endTag('div')?>
<?= Html::beginTag('div',['class'=>'form-group'])?>
<?= Html::activeLabel($model,'seo_h1',['class'=>'control-label'])?>
<?= Html::activeTextInput($model,'seo_h1',['class'=>'form-control'])?>
<?= Html::endTag('div')?>
<?= Html::beginTag('div',['class'=>'form-group'])?>
<?= Html::activeLabel($model,'seo_description',['class'=>'control-label'])?>
<?= Html::activeTextarea($model,'seo_description',['class'=>'form-control'])?>
<?= Html::endTag('div')?>
<?= Html::beginTag('div',['class'=>'form-group'])?>
<?= Html::activeLabel($model,'seo_translite',['class'=>'control-label'])?>
<?= Html::activeTextInput($model,'seo_translite',['class'=>'form-control'])?>
<?= Html::endTag('div')?>
|