In a form I have an input of type 'File' to upload a file and get the value of that file in the controller, but when doing dd ($ request-> file ('file') it shows me NULL.
{{ Form::open(array('url' => '/save'), ['id' => 'Form'], ['enctype' => 'multipart/form-data'], ['files'=> true]) }}
{{Form::file('file')}}
{{Form::close()}}