diff --git a/app/View/Components/Documents/Form/Advanced.php b/app/View/Components/Documents/Form/Advanced.php index 39783de5d..f3f69cc93 100644 --- a/app/View/Components/Documents/Form/Advanced.php +++ b/app/View/Components/Documents/Form/Advanced.php @@ -23,14 +23,16 @@ class Advanced extends Component } $recurring_class = 'col-sm-6 col-md-6 col-lg-6 col-xl-6'; - $more_class = 'col-sm-6 col-md-6 col-lg-6 col-xl-6'; + $recurring_form_class = 'col-sm-6 col-md-6 col-lg-6 col-xl-6'; + $more_form_class = 'col-md-12'; if ($this->hideRecurring && (!$this->hideCategory || !$this->hideAttachment)) { $more_class = 'col-sm-12 col-md-12 col-lg-12 col-xl-12'; + $more_form_class = 'col-md-6'; } else if ($this->hideRecurring && ($this->hideCategory && $this->hideAttachment)) { $recurring_class = 'col-sm-12 col-md-12 col-lg-12 col-xl-12'; } - return view('components.documents.form.advanced', compact('categories', 'category_type', 'recurring_class', 'more_class')); + return view('components.documents.form.advanced', compact('categories', 'category_type', 'recurring_class', 'more_class', 'more_form_class')); } } diff --git a/resources/views/components/documents/form/advanced.blade.php b/resources/views/components/documents/form/advanced.blade.php index 0879aaef6..a50b67dff 100644 --- a/resources/views/components/documents/form/advanced.blade.php +++ b/resources/views/components/documents/form/advanced.blade.php @@ -19,11 +19,11 @@ @if (!$hideCategory && !$hideAttachment)
@if (!$hideCategory) - {{ Form::selectRemoteAddNewGroup('category_id', trans_choice('general.categories', 1), 'folder', $categories, setting('default.' . $categoryType . '_category'), ['required' => 'required', 'path' => route('modals.categories.create') . '?type=' . $categoryType, 'remote_action' => route('categories.index'). '?type=' . $categoryType], 'col-md-12') }} + {{ Form::selectRemoteAddNewGroup('category_id', trans_choice('general.categories', 1), 'folder', $categories, setting('default.' . $categoryType . '_category'), ['required' => 'required', 'path' => route('modals.categories.create') . '?type=' . $categoryType, 'remote_action' => route('categories.index'). '?type=' . $categoryType], $more_form_class) }} @endif @if (!$hideAttachment) - {{ Form::fileGroup('attachment', trans('general.attachment'), '', ['dropzone-class' => 'form-file'], null, 'col-md-12') }} + {{ Form::fileGroup('attachment', trans('general.attachment'), '', ['dropzone-class' => 'form-file'], null, $more_form_class) }} @endif
@endif