Resmi upload etmemişsiniz.
$image = Input::file('image');
$filename = time() . '.' . $image->getClientOriginalExtension();
$destination = public_path() . '/img/products';
$image->move($destination, $filename); // upload
$product->image = $filename; // Dosya yolunu veritabanında tutmayın, sadece adını tutun.
Image::make($destination.'/'.$filename)
->resize(400, 400)
->save($destination . '/' . $filename);