blessing-skin-server/resources/views/admin/options.tpl

44 lines
969 B
PHP
Raw Normal View History

2016-07-22 19:36:24 +08:00
@extends('admin.master')
2016-09-25 10:02:40 +08:00
@section('title', trans('general.options'))
2016-07-22 19:36:24 +08:00
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
2016-09-25 10:02:40 +08:00
{{ trans('general.options') }}
2016-07-22 19:36:24 +08:00
</h1>
2017-01-02 10:40:09 +08:00
<div class="breadcrumb"></div>
2016-07-22 19:36:24 +08:00
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-6">
2016-11-12 23:50:41 +08:00
{!! $forms['general']->render() !!}
2016-07-22 19:36:24 +08:00
</div>
<div class="col-md-6">
2016-12-31 23:28:09 +08:00
{!! $forms['announ']->render() !!}
2016-07-22 19:36:24 +08:00
2016-11-12 23:50:41 +08:00
{!! $forms['cache']->render() !!}
2016-07-22 19:36:24 +08:00
</div>
</div>
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
@endsection
2016-11-12 23:50:41 +08:00
@section('style')
<style type="text/css">
.box-body > textarea { height: 200px; }
.description { margin: 7px 0 0 0; color: #555; }
</style>
@endsection