Ok if anyone has this error this is because of the following:
All authentication scaffolding has been moved to the
laravel/uirepository. If you are using Laravel’s authentication scaffolding, you should install the^2.0release of this package and the package should be installed in all environments.
So to resolve the error simply run the composer command on the root folder of the laravel application:
composer require laravel/ui "^2.0"
Or simply run:
composer require laravel/ui
Hope this helps.