<h3 class="text-center">Denegar aporte voluntario</h3>

<?php $this->widget('bootstrap.widgets.TbAlert', [
    'block' => true,
    'fade' => true,
    'closeText' => '&times;',
    'alerts' => [
        'error' => ['block' => true, 'fade' => true, 'Text' => '&times;'],
    ],
]); ?>

<?php $form = $this->beginWidget('bootstrap.widgets.TbActiveForm', [
    'id' => 'datos-txt-integrado-form',
    'enableAjaxValidation' => false,
    'type' => 'horizontal',
]); ?>
    <p class="help-block">Los campos con <span class="required">*</span> son obligatorios.</p>
    <br>

    <?= $form->textAreaRow($model, 'observacion', ['rows' => 6, 'cols' => 50, 'class' => 'span8']); ?>
    <div class="form-actions">
        <?php $this->widget('bootstrap.widgets.TbButton', [
            'buttonType' => 'submit',
            'type' => 'primary',
            'label' => 'Guardar',
        ]); ?>
    </div>
<?php $this->endWidget(); ?>
