Blame view

frontend/views/accounts/contacts.php 550 Bytes
51e0a262   Yarik   test
1
2
3
4
5
6
7
8
  <?php
  use common\models\Option;
  use yii\helpers\Html;
  use yii\widgets\ActiveForm;
  use \common\widgets\MultiLangForm;
  
      $this->title = 'Мой профиль';
      $this->params['breadcrumbs'][] = $this->title;
f819c230   Yarik   test
9
      $user = \Yii::$app->user->identity;
51e0a262   Yarik   test
10
11
12
  ?>
  
  <h1><?=  $this->title ?></h1>
51e0a262   Yarik   test
13
  <?php
f819c230   Yarik   test
14
15
16
17
18
19
  $form = ActiveForm::begin();
  ?>
  <?= \common\widgets\FieldEditor::widget([
      'template'=>'phone',
      'item_id'=> $user->id,
      'model'=>'common\models\User',
4f1adc01   Yarik   test
20
      'language'=>'ru'
f819c230   Yarik   test
21
22
23
24
  ]); ?>
  <?php
      echo Html::submitButton('submit');
      $form->end();
51e0a262   Yarik   test
25
  ?>