Files
newznab-tmux/app/Http/Requests/Disable2faPasswordSecurityRequest.php
T
2026-02-11 14:02:26 +01:00

21 lines
389 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.
*
* @return array<string, mixed>
*/
public function rules(): array
{
return ['current-password' => [
'required',
], ];
}
}