- @if ($debug_in_production)
@@ -827,25 +826,72 @@ dir="{{ Helper::determineLanguageDirection() }}"> @endif -
-

@yield('title')

+
- @if (isset($helpText)) - @include ('partials.more-info', - [ - 'helpText' => $helpText, - 'helpPosition' => (isset($helpPosition)) ? $helpPosition : 'left' - ]) - @endif -
-
+
diff --git a/resources/views/licenses/edit.blade.php b/resources/views/licenses/edit.blade.php index 4dbde2935..27f60931c 100755 --- a/resources/views/licenses/edit.blade.php +++ b/resources/views/licenses/edit.blade.php @@ -68,7 +68,7 @@
@@ -124,7 +124,7 @@
{{ trans('admin/licenses/form.maintained') }}
diff --git a/resources/views/livewire/category-edit-form.blade.php b/resources/views/livewire/category-edit-form.blade.php index cb80eb45d..91cb26da5 100644 --- a/resources/views/livewire/category-edit-form.blade.php +++ b/resources/views/livewire/category-edit-form.blade.php @@ -3,7 +3,12 @@
- {{ Form::textarea('eula_text', null, ['wire:model.live' => 'eulaText', 'class' => 'form-control', 'aria-label'=>'eula_text', 'disabled' => $this->eulaTextDisabled]) }} +

{!! trans('admin/categories/general.eula_text_help') !!}

{!! trans('admin/settings/general.eula_markdown') !!}

{!! $errors->first('eula_text', '') !!} @@ -18,12 +23,25 @@
@if ($defaultEulaText!='') @else @endif @@ -34,7 +52,13 @@
@@ -44,7 +68,14 @@
@if ($this->shouldDisplayEmailMessage) diff --git a/resources/views/livewire/custom-field-set-default-values-for-model.blade.php b/resources/views/livewire/custom-field-set-default-values-for-model.blade.php index cf3eac3f0..aee5f3888 100644 --- a/resources/views/livewire/custom-field-set-default-values-for-model.blade.php +++ b/resources/views/livewire/custom-field-set-default-values-for-model.blade.php @@ -19,8 +19,15 @@
@if ($fieldset_id) @endif diff --git a/resources/views/locations/edit.blade.php b/resources/views/locations/edit.blade.php index 4b4e655a5..004053d8a 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/locations/view.blade.php b/resources/views/locations/view.blade.php index b71167646..b10cb315e 100644 --- a/resources/views/locations/view.blade.php +++ b/resources/views/locations/view.blade.php @@ -314,11 +314,13 @@
-

- Assigned Accessories -

+ +

+ {{ trans('general.accessories_assigned') }} +

+ app('manufacturers_upload_path')]) +
+ +
+ + {!! $errors->first('notes', '') !!} +
+
+ @stop diff --git a/resources/views/modals/add-note.blade.php b/resources/views/modals/add-note.blade.php index 9c14098f0..8208fc36a 100644 --- a/resources/views/modals/add-note.blade.php +++ b/resources/views/modals/add-note.blade.php @@ -1,28 +1,35 @@ {{-- See snipeit_modals.js for what powers this --}} - @@ -40,7 +48,7 @@ {{ trans('button.cancel') }} - {{ Form::close() }} + diff --git a/resources/views/models/custom_fields_form.blade.php b/resources/views/models/custom_fields_form.blade.php index 1da3609c9..3297c15c9 100644 --- a/resources/views/models/custom_fields_form.blade.php +++ b/resources/views/models/custom_fields_form.blade.php @@ -1,10 +1,18 @@ @if (($model) && ($model->fieldset)) @foreach($model->fieldset->fields AS $field) + @if ( + ((!isset($show_display_checkin_fields)) + || (($field->display_checkin == '1') + && ($show_display_checkin_fields =='true'))) && + ((!isset($show_display_checkout_fields)) + || (($field->display_checkout == '1') + && ($show_display_checkout_fields =='true'))) + ) +
- @if ($field->element!='text') @if ($field->element=='listbox') @@ -88,6 +96,7 @@
+ @endif @endforeach @endif diff --git a/resources/views/models/index.blade.php b/resources/views/models/index.blade.php index cc2986cb8..6f3f5e78d 100755 --- a/resources/views/models/index.blade.php +++ b/resources/views/models/index.blade.php @@ -62,7 +62,6 @@
- {{ Form::close() }}
diff --git a/resources/views/models/view.blade.php b/resources/views/models/view.blade.php index 15ce82d67..8e99f5571 100755 --- a/resources/views/models/view.blade.php +++ b/resources/views/models/view.blade.php @@ -31,7 +31,18 @@
+ + @if ($model->deleted_at!='') +
+
+ + {{ trans('admin/models/general.deleted') }} +
+
+ @endif +
+ @@ -154,6 +164,24 @@