mani786's avatar

Unable to upload image in $request laravel

Pls guide I am unable to upload file in $request

0 likes
3 replies
tykus's avatar

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');
tykus's avatar

@mani786

yes, I have done that all

And that prevents you from sharing any other useful information???

Please or to participate in this conversation.