public function auth() { // Authentication Routes... $this->get('login', 'AuthAuthController@showLoginForm'); $this->post('login', 'AuthAuthController@login'); $this->get('logout', 'AuthAuthController@logout'); // Registration Routes... $this->get('register', 'AuthAuthController@showRegistrationForm'); $this->post('register', 'AuthAuthController@register'); // Password Reset Routes... $this->get('password/reset/{token?}', 'AuthPasswordController@showResetForm'); $this->post('password/email', 'AuthPasswordController@sendResetLinkEmail'); $this->post('password/reset', 'AuthPasswordController@reset'); }