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

19 lines
353 B
PHP

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