diff --git a/resources/views/partials/form/checkbox_group.blade.php b/resources/views/partials/form/checkbox_group.blade.php index 899a690b9..b746f6226 100644 --- a/resources/views/partials/form/checkbox_group.blade.php +++ b/resources/views/partials/form/checkbox_group.blade.php @@ -5,20 +5,23 @@ :class="[{'has-error': {{ isset($attributes['v-error']) ? $attributes['v-error'] : 'form.errors.get("' . $name . '")' }} }]"> {!! Form::label($name, $text, ['class' => 'form-control-label']) !!} -
- @foreach($items as $item) -
- {{ Form::checkbox($name, $item->$id, null, [ - 'id' => 'checkbox-' . $name . '-' . $item->$id, - 'class' => 'custom-control-input', - 'v-model' => !empty($attributes['v-model']) ? $attributes['v-model'] : 'form.' . $name - ]) }} +
+ @foreach($items as $item) +
+
+ {{ Form::checkbox($name, $item->$id, null, [ + 'id' => 'checkbox-' . $name . '-' . $item->$id, + 'class' => 'custom-control-input', + 'v-model' => !empty($attributes['v-model']) ? $attributes['v-model'] : 'form.' . $name + ]) }} - -
- @endforeach + +
+
+ @endforeach +
-
+