Level 104
Make sure your form allows file uploads:
<form action="wherever" method="POST" enctype="multipart/form-data">
<input name="image" type="file" />
<!-- etc -->
And in the Controller get the UploadedFile instance out of the Request using $request->file() method:
$image = $request->file('image');