//Use thinker in terminal
php artisan tinker
//change your email and password
$user = AppUser::where('email', 'user@example.com')->first();
$user->password = Hash::make('password');
$user->save();
exit
<?php
//$user->passwordChangeMagicHere()
Auth::login($user);
//And the user is logged in again!