field.blade.php 708 字节
<div class="form-group ">
    <label class="col-sm-{{$width['label']}} control-label">{{ __($label) }}</label>
    <div class="col-sm-{{$width['field']}}">
        @if($wrapped)
        <div class="box box-solid box-default no-margin box-show no-border">
            <!-- /.box-header -->
            <div class="box-body">
                @if($escape)
                    {{ $content }}&nbsp;
                @else
                    {!! $content !!}&nbsp;
                @endif
            </div><!-- /.box-body -->
        </div>
        @else
            @if($escape)
                {{ $content }}
            @else
                {!! $content !!}
            @endif
        @endif
    </div>
</div>