I think you need to indicate that the form involves files.
{{ Form::open( array('url' => '/ft', 'class'=>'form-horizontal', 'files' => true)) }}
<input type="file" name="le_file"/>
<input type="submit">
{{ Form::close() }}
Add enctype property to your upload form. It's mandatory for upload.
<form name="le_form" action="/ft" method="POST" enctype="multipart/form-data">
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community