public function store(Request $request)
{
...
$image_file = Request::file('image');
if (Request::hasFile('image'))
{
$image_file->move('/testupload');
}
...
}
{!! Form::file('image', null, ['class' => 'form-control']) !!}
Non-static method Illuminate\Http\Request::file() should not be called statically, assuming $this from incompatible context
$request->file('image');
if ($request->hasFile('image')) {
...