Undefined variable: errors (View: D:xampphtdocsninjatvresourcesviewsauthlogin.blade.php)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I tried to setup route for the admin middleware at routes.php
Route::group(['prefix' => 'admin', 'middleware'=> ['auth']], function () {
Route::get('/','AdminController@index');
});
and in AdminController I set up function for index as below:-
public function index(){
return view('backend.index');
}
But the problems is my path xxx/admin change to xxx/login automatically. It should be display the login page but it display Undefined variable: errors
laravel
add a comment |
I tried to setup route for the admin middleware at routes.php
Route::group(['prefix' => 'admin', 'middleware'=> ['auth']], function () {
Route::get('/','AdminController@index');
});
and in AdminController I set up function for index as below:-
public function index(){
return view('backend.index');
}
But the problems is my path xxx/admin change to xxx/login automatically. It should be display the login page but it display Undefined variable: errors
laravel
are you customized login.blade.php file?
– Emtiaz Zahid
Nov 23 '18 at 5:04
and also make sure you passed errors in your login controller authentication check function
– Emtiaz Zahid
Nov 23 '18 at 5:05
add a comment |
I tried to setup route for the admin middleware at routes.php
Route::group(['prefix' => 'admin', 'middleware'=> ['auth']], function () {
Route::get('/','AdminController@index');
});
and in AdminController I set up function for index as below:-
public function index(){
return view('backend.index');
}
But the problems is my path xxx/admin change to xxx/login automatically. It should be display the login page but it display Undefined variable: errors
laravel
I tried to setup route for the admin middleware at routes.php
Route::group(['prefix' => 'admin', 'middleware'=> ['auth']], function () {
Route::get('/','AdminController@index');
});
and in AdminController I set up function for index as below:-
public function index(){
return view('backend.index');
}
But the problems is my path xxx/admin change to xxx/login automatically. It should be display the login page but it display Undefined variable: errors
laravel
laravel
asked Nov 23 '18 at 4:10
lun7codelun7code
548
548
are you customized login.blade.php file?
– Emtiaz Zahid
Nov 23 '18 at 5:04
and also make sure you passed errors in your login controller authentication check function
– Emtiaz Zahid
Nov 23 '18 at 5:05
add a comment |
are you customized login.blade.php file?
– Emtiaz Zahid
Nov 23 '18 at 5:04
and also make sure you passed errors in your login controller authentication check function
– Emtiaz Zahid
Nov 23 '18 at 5:05
are you customized login.blade.php file?
– Emtiaz Zahid
Nov 23 '18 at 5:04
are you customized login.blade.php file?
– Emtiaz Zahid
Nov 23 '18 at 5:04
and also make sure you passed errors in your login controller authentication check function
– Emtiaz Zahid
Nov 23 '18 at 5:05
and also make sure you passed errors in your login controller authentication check function
– Emtiaz Zahid
Nov 23 '18 at 5:05
add a comment |
1 Answer
1
active
oldest
votes
Basically, Below route will redirect you to the login page if the session is not authenticated. If you are a valid logged in user then it will stay on this route.
Route::group(['prefix' => 'admin', 'middleware'=> ['auth']], function () {
Route::get('/','AdminController@index');
});
If the route is redirected this wouldn't call this method
public function index(){
return view('backend.index');
}
The redirected route now call the login method. Which will ideally be
expected to display your login page. In your case, it is happening correctly but the problem is you are getting errors as an undefined variable. You need to pass errors variable to auth.login view, just like below:-
public function index(){
return view(
'auth.login',
["errors" => "call here your method that will give error"]);
}
Refer here if you need to know more about methods of finding the error of submitted form or we can say validation: - https://laravel.com/docs/5.7/validation
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440557%2fundefined-variable-errors-view-d-xampp-htdocs-ninjatv-resources-views-auth-l%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Basically, Below route will redirect you to the login page if the session is not authenticated. If you are a valid logged in user then it will stay on this route.
Route::group(['prefix' => 'admin', 'middleware'=> ['auth']], function () {
Route::get('/','AdminController@index');
});
If the route is redirected this wouldn't call this method
public function index(){
return view('backend.index');
}
The redirected route now call the login method. Which will ideally be
expected to display your login page. In your case, it is happening correctly but the problem is you are getting errors as an undefined variable. You need to pass errors variable to auth.login view, just like below:-
public function index(){
return view(
'auth.login',
["errors" => "call here your method that will give error"]);
}
Refer here if you need to know more about methods of finding the error of submitted form or we can say validation: - https://laravel.com/docs/5.7/validation
add a comment |
Basically, Below route will redirect you to the login page if the session is not authenticated. If you are a valid logged in user then it will stay on this route.
Route::group(['prefix' => 'admin', 'middleware'=> ['auth']], function () {
Route::get('/','AdminController@index');
});
If the route is redirected this wouldn't call this method
public function index(){
return view('backend.index');
}
The redirected route now call the login method. Which will ideally be
expected to display your login page. In your case, it is happening correctly but the problem is you are getting errors as an undefined variable. You need to pass errors variable to auth.login view, just like below:-
public function index(){
return view(
'auth.login',
["errors" => "call here your method that will give error"]);
}
Refer here if you need to know more about methods of finding the error of submitted form or we can say validation: - https://laravel.com/docs/5.7/validation
add a comment |
Basically, Below route will redirect you to the login page if the session is not authenticated. If you are a valid logged in user then it will stay on this route.
Route::group(['prefix' => 'admin', 'middleware'=> ['auth']], function () {
Route::get('/','AdminController@index');
});
If the route is redirected this wouldn't call this method
public function index(){
return view('backend.index');
}
The redirected route now call the login method. Which will ideally be
expected to display your login page. In your case, it is happening correctly but the problem is you are getting errors as an undefined variable. You need to pass errors variable to auth.login view, just like below:-
public function index(){
return view(
'auth.login',
["errors" => "call here your method that will give error"]);
}
Refer here if you need to know more about methods of finding the error of submitted form or we can say validation: - https://laravel.com/docs/5.7/validation
Basically, Below route will redirect you to the login page if the session is not authenticated. If you are a valid logged in user then it will stay on this route.
Route::group(['prefix' => 'admin', 'middleware'=> ['auth']], function () {
Route::get('/','AdminController@index');
});
If the route is redirected this wouldn't call this method
public function index(){
return view('backend.index');
}
The redirected route now call the login method. Which will ideally be
expected to display your login page. In your case, it is happening correctly but the problem is you are getting errors as an undefined variable. You need to pass errors variable to auth.login view, just like below:-
public function index(){
return view(
'auth.login',
["errors" => "call here your method that will give error"]);
}
Refer here if you need to know more about methods of finding the error of submitted form or we can say validation: - https://laravel.com/docs/5.7/validation
answered Nov 23 '18 at 5:15
Rakesh KumarRakesh Kumar
2,6701521
2,6701521
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440557%2fundefined-variable-errors-view-d-xampp-htdocs-ninjatv-resources-views-auth-l%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
are you customized login.blade.php file?
– Emtiaz Zahid
Nov 23 '18 at 5:04
and also make sure you passed errors in your login controller authentication check function
– Emtiaz Zahid
Nov 23 '18 at 5:05