This is the tutorial I followed. I encountered the following error message:
Required field(s) name, email, password is missing or empty
It looks like I didn't post the correct parameters in my post. But it's not the case. Please refer to my screenshot:
I debugged the source code and found all the following variables are null:
$name = $app->request->post('name');
$email = $app->request->post('email');
$password = $app->request->post('password');
Can anybody tell me what could be the reason? Thanks