I'm having trouble retrieving any file data from my form post. I'm using the Laravel form Macros but I've also tried plain HTML inputs.
When I post the form there's no file input being posted, I've also tried dumping the post data in my controller just to double check. Not sure where I'm going wrong here...
Here's a quick rundown of the code:
{{ Form::open(array(
"url" => $formAction,
"files" => true,
"id" => "settings-form",
"class" => "form-horizontal"
)) }}
{{ Form::file($name, array(
"class" => "input-sm"
)) }}
{{ Form::close() }}