| 1234567891011121314151617181920212223242526272829 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\ActiveForm;
- /* @var $this yii\web\View */
- /* @var $searchModel app\models\ProfileSearch */
- /* @var $dataProvider yii\data\ActiveDataProvider */
- $this->title = Yii::t('app', 'Profile');
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="profile-index well">
- <h1><?= Html::encode($this->title) ?></h1>
- <?php // echo $this->render('_search', ['model' => $searchModel]); ?>
- <?php $form = ActiveForm::begin(); ?>
-
- <?= $form->field($model, 'name') ?>
- <div class="form-group">
- <?= Html::submitButton($model->isNewRecord ? Yii::t('app', 'Create') : Yii::t('app', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
|