Skip to content

Instantly share code, notes, and snippets.

@mgerasimchuk
Created September 24, 2015 11:42
Show Gist options
  • Save mgerasimchuk/d99fb17c20a47fe4e761 to your computer and use it in GitHub Desktop.
Save mgerasimchuk/d99fb17c20a47fe4e761 to your computer and use it in GitHub Desktop.
<?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