2025-04-10 23:19:13 +08:00

28 lines
631 B
PHP
Executable File

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\models\User */
$this->title = '新增运维';
$this->params['breadcrumbs'][] = ['label' => 'Users', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="wrapper wrapper-content">
<div class="user-create">
<div class="ibox-content">
<h1><?= Html::encode($this->title) ?></h1>
<hr/>
<?= $this->render('_form', [
'model' => $model,
'model1' => $model1,
'item' => $item,
]) ?>
</div>
</div>
</div>