contacts.php
550 Bytes
<?php
use common\models\Option;
use yii\helpers\Html;
use yii\widgets\ActiveForm;
use \common\widgets\MultiLangForm;
$this->title = 'Мой профиль';
$this->params['breadcrumbs'][] = $this->title;
$user = \Yii::$app->user->identity;
?>
<h1><?= $this->title ?></h1>
<?php
$form = ActiveForm::begin();
?>
<?= \common\widgets\FieldEditor::widget([
'template'=>'phone',
'item_id'=> $user->id,
'model'=>'common\models\User',
'language'=>'ru'
]); ?>
<?php
echo Html::submitButton('submit');
$form->end();
?>