Support the ongoing development of Laravel.io →
Input Forms
Last updated 2 years ago.
0

Use Input::hasFile('file') to first ensure you do have a file uploaded before you try and do anything with it.

The root of your problem though is likely because your form is not allowing form uploads, add 'files' => true to your {{ Form::open() }} call.

{{ Form::open(array('url' => 'nuovo_post', 'method' => 'POST', 'id' => 'nuovo_post', 'files' => true)) }}
Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.