Lets say continue with User example (you may have controller with store method and update method). To use FormRequests you use type-hinting the specific request.
...
public function store(App\Http\Requests\StoreRequest $request, App\User $user) {
//by type-hinting the request class, Larave...