I want to upload a file on jobs request page in my site but after upload file on my page, I'm getting the following error:
Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException The file "" does not exist
My code is:
$path = $request->file('image')->store('public');
echo $path;
dd($request->hasFile('image'));- Mayuri Pansuriya