<p class="help-block">Campos con <span class="required">*</span> son obligatorios.</p>
<?php $form = $this->beginWidget('bootstrap.widgets.TbActiveForm', [
    'id' => 'banco-tipo-servicio-form',
    'type' => 'horizontal',
    'enableClientValidation' => true,
    'clientOptions' => [
        'validateOnSubmit' => true,
        'validateOnChange' => true,
        'validateOnType' => true,
    ],
]); ?>
    <?= $form->dropDownListRow($model, 'id_titulo_proceso_pago', $titulo_proceso_pago, ['prompt' => 'Seleccione']); ?>
    <?= $form->dropDownListRow($model, 'id_concepto_operacion', Operacion::getAll(), ['prompt' => 'Seleccione']); ?>

    <div class="form-actions text-center" style="padding-left: 0;">
        <?php $this->widget('bootstrap.widgets.TbButton', [
            'buttonType' => 'submit',
            'type' => 'primary',
            'label' => $model->isNewRecord ? 'Registrar' : 'Actualizar',
        ]); ?>
    </div>
<?php $this->endWidget(); ?>
