1234567891011121314151617181920212223 |
- <div class="box box-solid">
- @foreach($contents as $content)
- <div class="box-body">
- <div style="color: #3c8dbc;height: 50px;line-height: 50px;font-weight: 500">{{ $content['type'] }}</div>
- <div class="col-md-8">
- {!! $content['form']->render() !!}
- </div>
- </div>
- @endforeach
- </div>
- <style>
- .base_info{position: relative;}
- .base_info img{
- max-width: 90px ;
- max-height: 120px;
- position: absolute;
- right: 0px;
- }
- .col-md-8{
- width: 100%;
- }
- </style>
|