Example #1
0
<?php

use hipanel\helpers\Url;
use hipanel\modules\client\models\Client;
use hipanel\modules\client\widgets\combo\SellerCombo;
use hipanel\widgets\PasswordInput;
use yii\bootstrap\ActiveForm;
use yii\helpers\Html;
$form = ActiveForm::begin(['id' => 'client-form', 'enableAjaxValidation' => true, 'validationUrl' => Url::toRoute(['validate-form', 'scenario' => $model->isNewRecord ? 'create' : 'update'])]);
?>

<?php 
echo $form->field($model, '[0]login')->textInput(['autocomplete' => 'off']);
echo $form->field($model, '[0]email')->textInput(['autocomplete' => 'off']);
echo $form->field($model, '[0]password')->widget(PasswordInput::class);
echo $form->field($model, '[0]type')->dropDownList(Client::getTypeOptions());
echo $form->field($model, '[0]seller_id')->widget(SellerCombo::class);
?>

<?php 
echo Html::submitButton(Yii::t('hipanel', 'Save'), ['class' => 'btn btn-success']);
?>
    &nbsp;
<?php 
echo Html::button(Yii::t('hipanel', 'Cancel'), ['class' => 'btn btn-default', 'onclick' => 'history.go(-1)']);
$form->end();