Laravel Hash
use Illuminate\Support\Facades\Hash;
Hash::make($newPassword);
if (Hash::check('plain-text', $hashedPassword)) {
// The passwords match...
}
Cloudy Cassowary