From ef9cc4fceb842f2b16181abe2116707d5734c02b Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 11 Feb 2025 00:39:26 +0000 Subject: [PATCH] Added notes to blades Signed-off-by: snipe --- resources/views/categories/edit.blade.php | 15 +++++++++++++++ resources/views/companies/edit.blade.php | 16 ++++++++++++++++ resources/views/departments/edit.blade.php | 14 ++++++++++++++ resources/views/departments/index.blade.php | 1 + resources/views/groups/edit.blade.php | 17 +++++++++++++++++ resources/views/locations/edit.blade.php | 17 +++++++++++++++++ resources/views/manufacturers/edit.blade.php | 15 +++++++++++++++ 7 files changed, 95 insertions(+) diff --git a/resources/views/categories/edit.blade.php b/resources/views/categories/edit.blade.php index 1ef3b7aa6a..96ef8e08a8 100755 --- a/resources/views/categories/edit.blade.php +++ b/resources/views/categories/edit.blade.php @@ -33,6 +33,21 @@ @include ('partials.forms.edit.image-upload', ['image_path' => app('categories_upload_path')]) +
+ +
+ + {!! $errors->first('notes', '') !!} +
+
+ @stop diff --git a/resources/views/companies/edit.blade.php b/resources/views/companies/edit.blade.php index 60d5f74ccb..d6b9cf9afd 100644 --- a/resources/views/companies/edit.blade.php +++ b/resources/views/companies/edit.blade.php @@ -14,4 +14,20 @@ @include ('partials.forms.edit.email') @include ('partials.forms.edit.image-upload', ['image_path' => app('companies_upload_path')]) +
+ +
+ + + +
+
+ @stop diff --git a/resources/views/departments/edit.blade.php b/resources/views/departments/edit.blade.php index c1a2b38d56..05d9b49e4c 100644 --- a/resources/views/departments/edit.blade.php +++ b/resources/views/departments/edit.blade.php @@ -26,6 +26,20 @@ @include ('partials.forms.edit.location-select', ['translated_name' => trans('general.location'), 'fieldname' => 'location_id']) @include ('partials.forms.edit.image-upload', ['image_path' => app('departments_upload_path')]) +
+ +
+ + {!! $errors->first('notes', '') !!} +
+
@stop diff --git a/resources/views/departments/index.blade.php b/resources/views/departments/index.blade.php index aa9d09e660..d05d5c9d75 100644 --- a/resources/views/departments/index.blade.php +++ b/resources/views/departments/index.blade.php @@ -43,6 +43,7 @@ {{ trans('admin/departments/table.manager') }} {{ trans('general.users') }} {{ trans('admin/departments/table.location') }} + {{ trans('general.notes') }} {{ trans('table.actions') }} diff --git a/resources/views/groups/edit.blade.php b/resources/views/groups/edit.blade.php index bd6bd85d1c..782d836beb 100755 --- a/resources/views/groups/edit.blade.php +++ b/resources/views/groups/edit.blade.php @@ -60,6 +60,23 @@ {!! $errors->first('name', '') !!} + +
+ +
+ + + {!! $errors->first('notes', '') !!} +
+
+
diff --git a/resources/views/locations/edit.blade.php b/resources/views/locations/edit.blade.php index 4b4e655a52..004053d8ab 100755 --- a/resources/views/locations/edit.blade.php +++ b/resources/views/locations/edit.blade.php @@ -57,6 +57,23 @@ @endif + @include ('partials.forms.edit.image-upload', ['image_path' => app('locations_upload_path')]) + +
+ +
+ + {!! $errors->first('notes', '') !!} +
+
+ @stop diff --git a/resources/views/manufacturers/edit.blade.php b/resources/views/manufacturers/edit.blade.php index b5429e5f34..000fd3a8f6 100755 --- a/resources/views/manufacturers/edit.blade.php +++ b/resources/views/manufacturers/edit.blade.php @@ -63,6 +63,21 @@ @include ('partials.forms.edit.image-upload', ['image_path' => app('manufacturers_upload_path')]) +
+ +
+ + {!! $errors->first('notes', '') !!} +
+
+ @stop