我尝试使用“http://localhost/myproject/public/auth/login”创建登录表单但我一直收到该错误。
以下是我的routes.php
:
Route::get('/', function () {
return view('welcome');
});
// Authentication routes...
Route::get('auth/login', 'Auth\AuthController@getLogin');
Route::post('auth/login', 'Auth\AuthController@postLogin');
Route::get('auth/logout', 'Auth\AuthController@getLogout');
// Registration routes...
Route::get('auth/register', 'Auth\AuthController@getRegister');
Route::post('auth/register', 'Auth\AuthController@postRegister');
我还创建了resources\views\auth\login.blade.php
文件。任何人都可以请求帮助,因为我正在关注Laravel 5.1,但不知道什么是错的。