title = 'Регистрация Исполнителя - Компания';
$this->params['breadcrumbs'][] = $this->title;
$this->registerJsFile(Yii::$app->request->baseUrl.'/js/jquery.mask.js',['position'=>View::POS_HEAD,'depends'=>['yii\web\YiiAsset']]);
$this->registerJs("
$('#user-phone').mask('(000) 000-0000');
", View::POS_READY, 'mask');
?>
    = Html::encode($this->title) ?>
    Потратив пару минут для регистрации на Бычок, вы сможете создавать услуги и находить заказчиков.
     'reg-form',
        'options' => ['class' => 'form-vertical'],
        'fieldConfig' => [
            //'template' => "{label}\n
{input}
\n
{error}
",
            //'labelOptions' => ['class' => 'col-lg-2 control-label'],
        ],
    ]); ?>
    = $form->field($model, 'username') ?>
    = $form->field($model, 'password')->passwordInput() ?>
	
	= $form->field($model, 'password_repeat')->passwordInput() ?>
	
	= $form->field($model, 'name') ?>
	
	= $form->field($model, 'surname') ?>
	
	= $form->field($model, 'company') ?>
	
	= $form->field($model, 'phone') ?>
	
	= $form->field($model, 'verifyCode')->widget(Captcha::className(),['captchaAction'=>'reg/captcha']) ?>
	= $form->field($model, 'role')->hiddenInput(['value'=>'company'])->label(false); ?> 
    
            = Html::submitButton(' Регистрация ', ['class' => 'btn btn-primary btn-lg btn-block', 'name' => 'login-button']) ?>