From 74babfa081a1f31e4ab50e12d9823529d29133e3 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 12 Apr 2023 08:26:36 -0700 Subject: [PATCH] Added maxlength="10" Signed-off-by: snipe --- app/Models/License.php | 6 +++--- resources/views/licenses/edit.blade.php | 4 ++-- resources/views/partials/forms/edit/datepicker.blade.php | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/Models/License.php b/app/Models/License.php index 41a3d7a52a..ff69d5f66d 100755 --- a/app/Models/License.php +++ b/app/Models/License.php @@ -49,9 +49,9 @@ class License extends Depreciable 'category_id' => 'required|exists:categories,id', 'company_id' => 'integer|nullable', 'purchase_cost'=> 'numeric|nullable|gte:0', - 'purchase_date' => 'date_format:Y-m-d|nullable', - 'expiration_date' => 'date_format:Y-m-d|nullable', - 'termination_date' => 'date_format:Y-m-d|nullable', + 'purchase_date' => 'date_format:Y-m-d|nullable|max:10', + 'expiration_date' => 'date_format:Y-m-d|nullable|max:10', + 'termination_date' => 'date_format:Y-m-d|nullable|max:10', ]; /** diff --git a/resources/views/licenses/edit.blade.php b/resources/views/licenses/edit.blade.php index f45e69ce96..cdbbc23e74 100755 --- a/resources/views/licenses/edit.blade.php +++ b/resources/views/licenses/edit.blade.php @@ -79,7 +79,7 @@
- +
{!! $errors->first('expiration_date', '') !!} @@ -93,7 +93,7 @@
- +
{!! $errors->first('termination_date', '') !!} diff --git a/resources/views/partials/forms/edit/datepicker.blade.php b/resources/views/partials/forms/edit/datepicker.blade.php index 3e5f1d478d..9d2a714bb7 100644 --- a/resources/views/partials/forms/edit/datepicker.blade.php +++ b/resources/views/partials/forms/edit/datepicker.blade.php @@ -3,7 +3,7 @@ {{ Form::label($fieldname, $translated_name, array('class' => 'col-md-3 control-label')) }}
- +
{!! $errors->first($fieldname, '') !!}