From 52c4901a78611f0f66a0480b8e206e752de12403 Mon Sep 17 00:00:00 2001 From: Nick Peelman Date: Mon, 18 Jul 2016 09:39:09 -0400 Subject: [PATCH] left align `@include` tags --- resources/views/partials/components_form.blade.php | 4 ++-- resources/views/subscribe/manage.blade.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/partials/components_form.blade.php b/resources/views/partials/components_form.blade.php index 876891e2..54eee258 100644 --- a/resources/views/partials/components_form.blade.php +++ b/resources/views/partials/components_form.blade.php @@ -13,7 +13,7 @@
@foreach($componentGroup->enabled_components()->orderBy('order')->get() as $component) - @include('partials.component_input', compact($component)) +@include('partials.component_input', compact($component)) @endforeach
@endif @@ -27,7 +27,7 @@ {{ trans('cachet.components.group.other') }} @foreach($ungrouped_components as $component) - @include('partials.component_input', compact($component)) +@include('partials.component_input', compact($component)) @endforeach @endif diff --git a/resources/views/subscribe/manage.blade.php b/resources/views/subscribe/manage.blade.php index df442b88..e34b3b36 100644 --- a/resources/views/subscribe/manage.blade.php +++ b/resources/views/subscribe/manage.blade.php @@ -26,7 +26,7 @@
@if(!$component_groups->isEmpty() || !$ungrouped_components->isEmpty()) - @include('partials.components_form') +@include('partials.components_form') @else

{{ trans('cachet.subscriber.manage.no_subscriptions') }}

@endif