*/ public function postRules() { return [ 'email' => 'required|email', 'captcha_token' => [new Recaptcha()], ]; } /** * Get the validation rules that apply to the request. * * @return array */ public function destroyRules() { return [ 'email' => 'required|email', 'captcha_token' => [new Recaptcha()], ]; } }