You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
977 B
32 lines
977 B
<?php |
|
|
|
/* @var $this yii\web\View */ |
|
/* @var $model \backend\forms\rbac\RbacCreateRoleForm */ |
|
|
|
use yii\bootstrap\ActiveForm; |
|
use yii\helpers\Html; |
|
|
|
$this->title = Yii::t('user', 'Create Role'); |
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('user', 'Roles'), 'url' => ['index']]; |
|
$this->params['breadcrumbs'][] = $this->title; |
|
?> |
|
<div class="users-rbac-role-create"> |
|
|
|
<?php $form = ActiveForm::begin(); ?> |
|
|
|
<div class="box box-default"> |
|
<div class="box-body"> |
|
<?= $form->field($model, 'name')->textInput(['maxLength' => true]) ?> |
|
<?= $form->field($model, 'description')->textarea() ?> |
|
<?= $form->field($model, 'rule_name')->textInput(['maxLength' => true]) ?> |
|
<?= $form->field($model, 'data')->textarea() ?> |
|
</div> |
|
</div> |
|
|
|
<div class="form-group"> |
|
<?= Html::submitButton(Yii::t('buttons', 'Save'), ['class' => 'btn btn-primary']) ?> |
|
</div> |
|
|
|
<?php ActiveForm::end(); ?> |
|
|
|
</div>
|