Laravel Tinker Update Password
$user = App\User::where('email', 'user@example.com')->first();
$user->password = Hash::make('password');
$user->save();
MatrixZA
$user = App\User::where('email', 'user@example.com')->first();
$user->password = Hash::make('password');
$user->save();
php artisan tinker
echo Hash::make('yourpassword');