mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
17 lines
280 B
PHP
17 lines
280 B
PHP
<?php
|
|
|
|
namespace App\Actions\User;
|
|
|
|
use Laravel\Fortify\Rules\Password;
|
|
|
|
trait PasswordValidationRules
|
|
{
|
|
/**
|
|
* @return array<int, mixed>
|
|
*/
|
|
protected function passwordRules(): array
|
|
{
|
|
return ['required', 'string', new Password, 'confirmed'];
|
|
}
|
|
}
|