Can't write image data to path (/var/www/html/laravel_base/public/images/profile_image1610191305.jpeg) in file /var/www/html/laravel_base/vendor/intervention/image/src/Intervention/Image/Image.php code example
Example: Can't write image data to path
Just change this:
$path = public_path('images/cars/'.$filename);
To this:
$path = 'images/cars/' . $filename;
Also, make sure that, the target path/location is writable, has write
permission.