We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50aa965 commit c22f2b0Copy full SHA for c22f2b0
README.md
@@ -170,11 +170,6 @@ use Illuminate\Validation\Rule;
170
171
class ContactFormRequest extends FormRequest
172
{
173
- public function authorize(): bool
174
- {
175
- return true;
176
- }
177
-
178
public function rules(): array
179
180
return [
@@ -184,13 +179,6 @@ class ContactFormRequest extends FormRequest
184
'g-recaptcha-response' => ['required', 'string', Rule::googleRecaptchaV3()],
185
];
186
181
}
187
188
- public function messages(): array
189
190
- return [
191
- 'g-recaptcha-response.required' => 'Please complete the reCAPTCHA verification.',
192
- ];
193
194
182
195
183
```
196
0 commit comments