| 
<?php
 return [
 'errors' => [
 'upload' => [
 'failed' => "The upload of file :name has failed.",
 'access' => "Cannot get write access to upload directory.",
 'type' => "Upload is not allowed for file of type :type.",
 'extension' => "Upload is not allowed for file with extension :extension.",
 'max-size' => "Upload is not allowed for file of size :size. Too big.",
 'max-size' => "Upload is not allowed for file of size :size. Too small.",
 'plugin' => "Upload plugin not found",
 'request' => "Upload data not available in the request",
 ],
 ],
 ];
 
 |