Hi guys great work on this widget, but I'm facing some trouble here since the widget isn't sending the image selected.
here is my form action
<?php
$form = ActiveForm::begin([
'method' => 'post',
'action' => ['institucional/cadastrar-assinatura']], ['options' => ['enctype' => 'multipart/form-data']]);
?>
Hi guys great work on this widget, but I'm facing some trouble here since the widget isn't sending the image selected. here is my form action <?php $form = ActiveForm::begin([ 'method' => 'post', 'action' => ['institucional/cadastrar-assinatura']], ['options' => ['enctype' => 'multipart/form-data']]); ?>
My view import use kartik\widgets\FileInput; On my controller I've made some debug
if ($model->load(Yii::$app->request->post())) {
// return $this->redirect(['index']); } else { return $this->render('create-assinatura', [ 'model' => $model, ]); }