Created
September 24, 2015 11:42
-
-
Save mgerasimchuk/d99fb17c20a47fe4e761 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use yii\helpers\Html; | |
use yii\widgets\ActiveForm; | |
/* @var $this yii\web\View */ | |
/* @var $model app\models\Partner */ | |
$this->title = 'Create Partner'; | |
$this->params['breadcrumbs'][] = ['label' => 'Partners', 'url' => ['index']]; | |
$this->params['breadcrumbs'][] = $this->title; | |
?> | |
<div class="partner-create"> | |
<h1><?= Html::encode($this->title) ?></h1> | |
<?= $this->render('_form', [ | |
'model' => $model, | |
]) ; | |
?> | |
<?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]) ?> | |
<?= $form->field($model, 'file')->fileInput() ?> | |
<button>Отправить</button> | |
<?php ActiveForm::end() ?> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment