writesdown/app-cms

View on GitHub
backend/views/user/profile.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * @link http://www.writesdown.com/
 * @author Agiel K. Saputra <13nightevil@gmail.com>
 * @copyright Copyright (c) 2015 WritesDown
 * @license http://www.writesdown.com/license/
 */

/* @var $this yii\web\View */
/* @var $model common\models\User */

$this->title = Yii::t('writesdown', 'My Profile');

$this->params['breadcrumbs'][] = Yii::t('writesdown', 'Profile');
?>
<div class="user-update">
    <?= $this->render('_profile', [
        'model' => $model,
    ]) ?>
</div>