The primary way of getting input would be from injecting the Illuminate\Http\Request into your controller, after that there are numerous ways of accessing the data, 4 of which are in the example below.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class UserController...