Unexpected field 'g-recaptcha-response' in POST data on CakePHP 3
问题 I have created a site using CakePHP 3. I have static page which has contact us form something like this: inside contactus.ctp: <?=$this->Form->create(); ?> <?=$this->Form->hidden('form_type',['value' => 'contact']) ?> <?=$this->Form->input('name',[ 'label' => false, 'placeholder' => 'Your Full Name', 'required' => true ]); ?> <?=$this->Form->input('email',[ 'label' => false, 'placeholder' => 'Your Email', 'type' => 'email', 'require' => true ]); ?> <?=$this->Form->textarea('message',[