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.
25 lines
582 B
25 lines
582 B
@if($label!=false) |
|
<div class="row"> |
|
<div class="{{$viewClass['label']}}"><h4 class="pull-right">{!! $label !!}</h4></div> |
|
<div class="{{$viewClass['field']}}"></div> |
|
</div> |
|
<hr style="margin-top: 0px;"> |
|
@endif |
|
|
|
<div id="embed-{{$column}}" class="embed-{{$column}}"> |
|
|
|
<div class="embed-{{$column}}-forms"> |
|
|
|
<div class="embed-{{$column}}-form fields-group"> |
|
|
|
@foreach($form->fields() as $field) |
|
{!! $field->render() !!} |
|
@endforeach |
|
|
|
</div> |
|
</div> |
|
</div> |
|
|
|
@if($label!=false) |
|
<hr style="margin-top: 0px;"> |
|
@endif
|
|
|