| Current Path : /var/www/html/ekursus/backend/views/sys-user/ |
| Current File : /var/www/html/ekursus/backend/views/sys-user/_form.php |
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model backend\models\SysUser */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="sys-user-form">
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'id_pengguna')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'nama')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'noic')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'jawatan')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'emel')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'katalaluan')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'had_capaian')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'kod_negeri')->textInput(['maxlength' => true]) ?>
<div class="form-group">
<?= Html::submitButton(Yii::t('app', 'Save'), ['class' => 'btn btn-success']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>