Laravel Call to a member function getClientOriginalExtension() on null Laravel Call to a member function getClientOriginalExtension() on null laravel laravel

Laravel Call to a member function getClientOriginalExtension() on null


in your form:open you need the 'files' => true like below

Form::open('your_path', array('files'=> true))

or

<form action="yout path" method="post" enctype="multipart/form-data">


Just simply add the following code inside your form's opening tag:enctype="multipart/form-data"


This means that no file input has been seen for that file. So, check that you input something in each file input