Move all front-end templates into a skin folder; override some view calls to accomodate
This commit is contained in:
@@ -20,6 +20,11 @@ class ForgotPasswordController extends Controller
|
||||
|
||||
use SendsPasswordResetEmails;
|
||||
|
||||
public function showLinkRequestForm()
|
||||
{
|
||||
return $this->view('auth.passwords.email');
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
|
||||
@@ -27,6 +27,11 @@ class LoginController extends Controller
|
||||
*/
|
||||
protected $redirectTo = '/home';
|
||||
|
||||
public function showLoginForm()
|
||||
{
|
||||
return $this->view('auth/login');
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
|
||||
@@ -30,6 +30,11 @@ class RegisterController extends Controller
|
||||
*/
|
||||
protected $redirectTo = '/home';
|
||||
|
||||
public function showRegistrationForm()
|
||||
{
|
||||
return $this->view('auth.register');
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
|
||||
@@ -20,6 +20,13 @@ class ResetPasswordController extends Controller
|
||||
|
||||
use ResetsPasswords;
|
||||
|
||||
public function showResetForm(Request $request, $token = null)
|
||||
{
|
||||
return $this->view('auth.passwords.reset',
|
||||
['token' => $token, 'email' => $request->email]
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user