25 lines
564 B
PHP
25 lines
564 B
PHP
|
|
<div class="box box-{{ $style }}">
|
||
|
|
<div class="box-header with-border">
|
||
|
|
<h3 class="box-title">{{ $title }}</h3>
|
||
|
|
|
||
|
|
<div class="box-tools">
|
||
|
|
{!! $tools !!}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<!-- /.box-header -->
|
||
|
|
<!-- form start -->
|
||
|
|
<div class="form-horizontal">
|
||
|
|
|
||
|
|
<div class="box-body">
|
||
|
|
|
||
|
|
<div class="fields-group">
|
||
|
|
|
||
|
|
@foreach($fields as $field)
|
||
|
|
{!! $field->render() !!}
|
||
|
|
@endforeach
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
<!-- /.box-body -->
|
||
|
|
</div>
|
||
|
|
</div>
|