Skip to content
Advertisement

Undefined variable $credentials, tried several solutions but couldn’t understand my mistake

I’m a beginner, learning Laravel. I was trying to create a web page which will show me my login Info(like email and password) once I log in. In my controller part I passed values using route parameter, but when I call it in blade, it shows

ErrorException Undefined variable $credentials (View: …..new projectNewLearnresourcesviewswelcome.blade.php)

My database has users table( email and password columns (which will be shown only), along with name,id, timestamps).

my LoginController

JavaScript

my routes

JavaScript

my welcome.blade.php

JavaScript

Where am I making the mistake? Thanks in advance.

Advertisement

Answer

You are making it pretty hard on yourself. Let us start by changing

JavaScript

to

JavaScript

Now in login process simply change

JavaScript

to

JavaScript

Now inside your blade file you can simple use

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement