echo $form->textField($model, 'average_monthly_income', array('class' => 'form-control'));
?>
                        <?php 
echo $form->error($model, 'average_monthly_income', array('class' => 'text-danger'));
?>
                    </div>
                </div>

                <div class="form-group">
                    <?php 
echo $form->labelEx($model, 'method_accepted', array('class' => 'control-label col-sm-4'));
?>
                    <div class="col-sm-8">
                        <div class="checkbox">
                            <?php 
echo $form->checkBoxList($model, 'method_accepted', FamilyPlanningService::getAcceptedMethods());
?>
                        </div>
                        <?php 
echo $form->error($model, 'method_accepted', array('class' => 'text-danger'));
?>
                    </div>
                </div>

                <div class="form-group">
                    <?php 
echo $form->labelEx($model, 'other_method_accepted', array('class' => 'control-label col-sm-4'));
?>
                    <div class="col-sm-8">
                        <?php 
echo $form->textField($model, 'other_method_accepted', array('class' => 'form-control'));