Use pre for textarea settings

This commit is contained in:
OllieJC 2022-01-22 13:30:50 +00:00 committed by GitHub
parent a4b32dcafd
commit f51893b2d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,11 @@
<tr>
<td>{{ __($setting->label) }}</td>
<td>
@if($setting->type === "textarea")
<pre>{{ $setting->list_value }}</pre>
@else
{!! $setting->list_value !!}
@endif
</td>
<td class="text-center">
@if((bool)$setting->system !== true)
@ -49,4 +53,4 @@
</section>
@endforeach
@endsection
@endsection