yeah, the fields are missing the recordset reference in the initial value.
so for example, the email field:
<input id="User_Update_group_4_Email" name="User_Update_group_4_Email" type="text" value="<?php echo((isset($_GET["invalid"])?ValidatedField("userupdate","User_Update_group_4_Email"):"")); ?>" class="formTextfield_Medium" tabindex="4" pattern="[^@]+@[^@]+\.[a-zA-Z]{2,6}" title="Please enter a value." required>
the value:
value="<?php echo((isset($_GET["invalid"])?ValidatedField("userupdate","User_Update_group_4_Email"):"")); ?>"
should be:
value="<?php echo((isset($_GET["invalid"])?ValidatedField("userupdate","User_Update_group_4_Email"):$row_SecurityAssisthotresumes2['email'])); ?>"
you will need to update that for all the fields.
i just tested this and can reproduce, so a bug has been logged to have it correct ed in the next update.