In my routes.php file I have :
routes.php
Route::get(\'/\', function () { return view(\'login\'); }); Route::get(\'/index\', function(){ return v
In Laravel 5.2 Input:: is replaced with Request::
use
Request::
Add to the top of Controller or any other Class
use Illuminate\Http\Request;