Use pre for textarea settings
This commit is contained in:
parent
a4b32dcafd
commit
f51893b2d6
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue