blessing-skin-server/resources/views/admin/options.tpl
2017-01-21 13:35:38 +08:00

36 lines
781 B
PHP

@extends('admin.master')
@section('title', trans('general.options'))
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
{{ trans('general.options') }}
</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-6">
{!! $forms['general']->render() !!}
</div>
<div class="col-md-6">
{!! $forms['announ']->render() !!}
{!! $forms['resources']->render() !!}
</div>
</div>
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
@endsection