
<table width="100%" border="0" cellpadding="0" cellspacing="0">
    <thead>
        <tr>
            <td style="background-color: #eaeaea;padding:5px"><?php echo Question::getQuestionName($question->question); ?></td>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td style="padding:5px">
                <?php if(isset($question->answers)): ?>

                    <?php foreach($question->answers as $answer): ?>
                        <?php echo $__env->make('test.template.answers',array("answer"=>$answer,"result"=>""), array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                    <?php endforeach; ?>

                <?php endif; ?>
            </td>
        </tr>
    </tbody>
</table>
<br>