From f3c5f3332b813626646c0ec730c866955826dfef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Sun, 24 Jul 2022 00:40:51 +0300 Subject: [PATCH] formatting --- app/Http/Requests/Document/Document.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Requests/Document/Document.php b/app/Http/Requests/Document/Document.php index e461dcd06..0fe321147 100644 --- a/app/Http/Requests/Document/Document.php +++ b/app/Http/Requests/Document/Document.php @@ -114,8 +114,8 @@ class Document extends FormRequest $messages['company_logo.dimensions'] = trans('validation.custom.invalid_dimension', [ 'attribute' => Str::lower(trans('settings.company.logo')), - 'width' => '1000', - 'height' => '1000', + 'width' => config('filesystems.max_width'), + 'height' => config('filesystems.max_height'), ]); return $messages;