<?php 
FormUtils::writeField('old_password', $form, array('class' => 'textfield'));
?>
            
            <?php 
FormUtils::writeLabel('New Password', 'Must be at least 6 characters', true);
?>
            <?php 
FormUtils::writeField('new_password', $form, array('class' => 'textfield'));
?>
            
            <?php 
FormUtils::writeLabel('Confirm New Password', '', true);
?>
            <?php 
FormUtils::writeField('confirm_new_password', $form, array('class' => 'textfield'));
?>
    
            
            <?php 
FormUtils::writeLabel('');
?>
            <?php 
FormUtils::writeButton('Change Password');
?>
        
        </table>
        <?php 
FormUtils::writeCSRFToken($form);
?>