Resolved by myself.
Laravel uses PHP hash for storing passwords.
So I run the following code to get Hash and put it in DB
<?php
$plaintext_password = "newPassword";
$hash = password_hash($plaintext_password,
PASSWORD_DEFAULT);
echo "Generated hash: ".$hash;
?>
You can run it on OneCompiler