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.
17 lines
458 B
17 lines
458 B
<div class="form-group {!! !$errors->has($label) ?: 'has-error' !!}">
|
|
|
|
<label for="{{$id}}" class="col-sm-2 control-label">{{$label}}</label>
|
|
|
|
<div class="{{$viewClass['field']}}">
|
|
|
|
@include('admin::form.error')
|
|
|
|
<div id="{{$id}}" style="width: 100%; height: 100%;">
|
|
<p>{!! old($column, $value) !!}</p>
|
|
</div>
|
|
|
|
<input type="hidden" name="{{$name}}" value="{{ old($column, $value) }}" />
|
|
|
|
</div>
|
|
</div>
|