I'm starting a new project with Laravel 5.7. I've made standard laravel Auth with artisan. It registered a new route in routes/web.php which is
Route::get('/home', 'HomeController@index')->name('home');
The problem is when i rename '/home' to '/admin' it doesn't work. It returns 'The requested resource /admin was not found on this server.' error. I can replace '/home' with anything except '/admin'. Anything else works without a problem. What is wrong with '/admin' and why can't i use '/admin' as a route?