I\'m using default auth() in laravel login (email & password) Now i try to take input from the user in text field like (Age or City)
Now i want to store (Age/City) i
You can use
Session::put('key', 'value');
To get key from Session use
Session::get('key');
You can use the session() helper function as @Alexey Mezenin answer.
session()
Laravel Session Documentation