added proper validation message for dimensions
This commit is contained in:
@ -45,6 +45,24 @@ return [
|
||||
|
||||
'max_size' => env('FILESYSTEM_MAX_SIZE', '2'),
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Allowed image max width, in pixes
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
'max_width' => env('FILESYSTEM_MAX_WIDTH', '1000'),
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Allowed image max height, in pixes
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
'max_height' => env('FILESYSTEM_MAX_HEIGHT', '1000'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Filesystem Disks
|
||||
|
Reference in New Issue
Block a user