Answers for "laravel check if password is hashed"

PHP
1

laravel hash check password, Verifying That A Password Matches A Hash

if (Hash::check('plain-text', $hashedPassword)) {
    // The passwords match...
}
Posted by: Guest on June-13-2021
0

laravel hash check password, Verifying That A Password Matches A Hash

<?php

namespace App\Http\Controllers;

use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Hash;

class PasswordController extends Controller
{
    /**
     * Update the password for the user.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function update(Request $request)
    {
        // Validate the new password length...

        $request->user()->fill([
            'password' => Hash::make($request->newPassword)
        ])->save();
    }
}
Posted by: Guest on April-02-2021
0

laravel hash password check

$data = User::find($id);
if( ! Hash::check( $data->password , Input::get('currPassword') ) )
{
    return Redirect::to('/admin/profile')
        ->with('message', 'Current Password Error !')
        ->withInput();
}
Posted by: Guest on December-10-2020

Code answers related to "laravel check if password is hashed"

Browse Popular Code Answers by Language