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() helper:
session('age', 18); // saves age into session
$age = session('age')`; // gets age from session
Update
If you want to save Age and City after user registration, you should store this data in a DB, not in a session. You can add some fileds in create
method of app\Http\Controllers\Auth\AuthController.php