内置登录/注册系统的laravel可以更改,因此任何注册用户都可以添加更多用户。目前,如果用户登录该用户无法进入注册页面。任何提示都将非常感激。
在auth控制器构造函数中尝试了这个
public function __construct()
{
$this->middleware($this->guestMiddleware(), ['except' => 'logout', 'getRegister', 'postRegister']);
}
' getRegister ',' postRegister '从认证中排除。但这不是解决方案。问题仍然存在。
路线
// Authentication Routes...
$this->get('login', 'Auth\AuthController@showLoginForm');
$this->post('login', 'Auth\AuthController@login');
$this->get('logout', 'Auth\AuthController@logout');
// Registration Routes...
$this->get('register', 'Auth\AuthController@showRegistrationForm');
$this->post('register', 'Auth\AuthController@register');
// Password Reset Routes...
$this->get('password/reset/{token?}', 'Auth\PasswordController@showResetForm');
$this->post('password/email', 'Auth\PasswordController@sendResetLinkEmail');
$this->post('password/reset', 'Auth\PasswordController@reset');