Rotas auth
[Finalizado Pelo Aluno]
Você não colocou as rotas na descrição do video =D
Olá, Rodrigo!
Obrigado por avisar amigo.
Segue:
// Auth::routes();
/*
* Auth Custon Routes
*/
$this->get('login', 'Auth\LoginController@showLoginForm')->name('login');
$this->post('login', 'Auth\LoginController@login');
$this->post('logout', 'Auth\LoginController@logout')->name('logout');
// Password Reset Routes...
$this->post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail')->name('password.email');
$this->get('password/reset', 'Auth\ForgotPasswordController@showLinkRequestForm')->name('password.request');
$this->post('password/reset', 'Auth\ResetPasswordController@reset')->name('password.reseting');
$this->get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.reset');
// Registration Routes...
$this->group(['middleware' => 'not.domain.main'], function() {
$this->get('register', 'Auth\RegisterController@showRegistrationForm')->name('register');
$this->post('register', 'Auth\RegisterController@register')->name('');
});
Precisa estar logado para conseguir responder a este ticket!
Clique Aqui Para Entrar!