क्योंकि आप जिस डेटा को सहेजने की कोशिश कर रहे हैं वह 'ट्यूटर' है, 'ट्यूटरएडिट' नहीं। आपके द्वारा साझा किए गए उस लिंक में, पहला खंड उचित सरणी प्रारूप दिखाता है जिसे सहेजे जाने की आवश्यकता है।
इसे आजमाएं:
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');
}
}