recaptcha: Returns Null
It returns null when I used dd() in it.
My code:
dd($request->input('g-recaptcha-response'));
About this issue
- Original URL
- State: closed
- Created 7 years ago
- Comments: 15 (1 by maintainers)
It returns null when I used dd() in it.
My code:
dd($request->input('g-recaptcha-response'));
@jonjie0317 Add
dd($request->all());at the top ofpostForm(you can also dodd(\Request::all())). Also, are you type sniffing theRequestproperly? Make sure that the$requestobject you’re looking at is of typeIlluminate\Http\Request.