mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
16 lines
305 B
PHP
16 lines
305 B
PHP
<?php
|
|
namespace App\Users\Rules;
|
|
|
|
use Laravel\Fortify\Rules\Password;
|
|
|
|
trait PasswordValidationRules
|
|
{
|
|
/**
|
|
* Get the validation rules used to validate passwords.
|
|
*/
|
|
protected function passwordRules(): array
|
|
{
|
|
return ['required', 'string', new Password, 'confirmed'];
|
|
}
|
|
}
|