I already configured php.ini file (post_max_size=10240M), but it\'s still throwing PostTooLargeException. How to increase upload and download limit in Laravel 5.5?
You may try the following code in your php.ini file to increase the memory limit.
php.ini
ini_set('memory_limit','10240M'); # Do your Intervention operations...
You may also be interested to read https://laracasts.com/discuss/channels/servers/interventionimage-memory-limit?page=1