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

22 lines
331 B
PHP

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