//add this function to your user model and call it from within beforeSave() function setNewPassword() { $this->data['User']['paswd'] = $this->data['User']['new_passwd']; return TRUE; } function beforeSave(){ $this->setNewPassword(); return true; }