Level 55
@alya_alsiyabi any info HOW EXACTLY it doesn't work?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I am trying to validate the password, but it doesn't work. I could not understand why ?so When I put numbers only or only letters the code accept them
$this->validate($request, [
'name' => 'required',
'email' => 'required|email|unique:users,email',
'password' => ['required', 'confirmed',Password::min(8)
->letters()
->mixedCase()
->numbers()
->symbols()
->uncompromised() ],
'roles' => 'required',
]);
Please or to participate in this conversation.