Files
newznab-tmux/app/Http/Requests/Auth/ShowLinkRequestFormForgotPasswordRequest.php
T
2023-03-30 14:15:10 +00:00

22 lines
417 B
PHP

<?php
namespace App\Http\Requests\Auth;
use Illuminate\Foundation\Http\FormRequest;
class ShowLinkRequestFormForgotPasswordRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return ['g-recaptcha-response' => [
'required',
'captcha',
],];
}
}