May you are not use attribute in form tag <form action="#" method="POST" enctype="multipart/form-data">
May in your form input type file you set wrong name
Example:
In view.blade.php you create <input type="file" name="photo" id="photo" />
But you are fetching by $request->file('image');
So there are mistake name of the file so you need to correct this like
$request->file(‘photo’)
So check all cases that i mentioned
I hope you solve your problem easily