ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/vendor/laravel/fortify/stubs/
Upload File :
Current File : /home2/selectio/public_html/fms-worksuite/vendor/laravel/fortify/stubs/ResetUserPassword.php

<?php

namespace App\Actions\Fortify;

use App\Models\User;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Validator;
use Laravel\Fortify\Contracts\ResetsUserPasswords;

class ResetUserPassword implements ResetsUserPasswords
{
    use PasswordValidationRules;

    /**
     * Validate and reset the user's forgotten password.
     *
     * @param  array<string, string>  $input
     */
    public function reset(User $user, array $input): void
    {
        Validator::make($input, [
            'password' => $this->passwordRules(),
        ])->validate();

        $user->forceFill([
            'password' => Hash::make($input['password']),
        ])->save();
    }
}

Zerion Mini Shell 1.0