You should add to the form tag enctype="multipart/form-data"
For example:
<form method="POST" action="{{route('back.post.new')}}" enctype="multipart/form-data">
.............
</form>
Adding it you can use your custom Request.
I hope this can you help!