File "PasswordValidationRules.php"

Full Path: /home/fundopuh/trader.fxex.org/app/Actions/Fortify/PasswordValidationRules.php
File size: 521 bytes
MIME-type: text/x-php
Charset: utf-8

<?php  
// this Code is Cracked by dharunMods-YouTube-Channel

namespace App\Actions\Fortify;

use Illuminate\Validation\Rules\Password as RulesPassword;
use Laravel\Fortify\Rules\Password;

trait PasswordValidationRules
{
    /**
     * Get the validation rules used to validate passwords.
     *
     * @return array
     */
    protected function passwordRules()
    {
        return ['required', 'string', new Password, 'confirmed', RulesPassword::min(8)->mixedCase()->numbers()->symbols()->uncompromised()];
    }
}