@mohammednehru check if you have resources/views/auth/login.blade.php file in your hosting.
Feb 11, 2020
14
Level 3
ON hosting problem
Hi, I deployed a laravel website using Cpanel and configure everything but when I need to access login or register I get this error.
https://l.top4top.io/p_1502gua9u1.png
Auth::routes(); this is the routes.
Level 102
Is this a windows server? The path is d:
Any chance you just copied your local cached version to a server? If you can use artisan the try this
php artisan optimize:clear
If not the try adding this route and calling it from the browser
Route::get('/clear-cache', function() {
Artisan::call('optimize:clear');
});
Please or to participate in this conversation.