Was there a migration to create the users table? If so, it's trying to reverse that migration (along with the others) but that table no longer exists since you removed it manually.
You'd have to edit the migrations table and find the date that corresponds to the name of the migration that creates the users table. Or if you don't have a ton of tables yet, just delete the migration table totally along with any other tables that migrations would create and migrate from scratch.
also, check the password resets table migration. It's probably using a foreign key field referencing your users table and in your new users table it doesn't exist.
Ensure you have all your migrations - and they are correct and in order (for foreign keys etc.)
Run php artisan migrate
It looks like it is trying to rollback migrations for files that no longer exist. SO its looking for the password rest file but it cant find it so errors out.