Bởi vì dữ liệu bạn đang cố gắng lưu là 'Tutor', không phải 'TutorEdit'. Trong liên kết mà bạn đã chia sẻ, phần đầu tiên hiển thị định dạng mảng thích hợp cần được lưu.
Hãy thử điều này:
if ($this->request->is('post') ) {
$tutoredit = array('TutorEdit' => $this->request->data['Tutor']);
if ($this->TutorEdit->save($tutoredit)) {
$this->Session->setFlash(__('The tutor details to be edited have ben forwarded to management'), 'flash_success');
} else {
$this->Session->setFlash(__('The tutor edit details could not be saved. Please, try again.'), 'flash_alert');
}
}