You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
733 B
26 lines
733 B
<div class="show-field form-group row"> |
|
<div class="col-sm-{{ $width['label'] }} control-label"> |
|
<span>{{ $label }}</span> |
|
</div> |
|
|
|
<div class="col-sm-{{ $width['field'] }}"> |
|
@if($wrapped) |
|
<div class="box box-solid box-default no-margin box-show"> |
|
<div class="box-body"> |
|
@if($escape) |
|
{{ $content }} |
|
@else |
|
{!! $content !!} |
|
@endif |
|
|
|
</div> |
|
</div> |
|
@else |
|
@if($escape) |
|
{{ $content }} |
|
@else |
|
{!! $content !!} |
|
@endif |
|
@endif |
|
</div> |
|
</div> |