portal.mkgtu.ru/backend/views/user/create.php

15 lines
349 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
$this->title = Yii::t('backend', 'Создание {modelClass}', [
'modelClass' => 'User',
]);
$this->params['breadcrumbs'][] = ['label' => Yii::t('backend', 'Пользователи'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
echo $this->render('_form', [
'model' => $model,
'roles' => $roles
]);