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

33 lines
774 B
PHP
Raw Normal View History

2016-07-29 11:52:45 +08:00
@extends('admin.master')
2016-09-25 10:02:40 +08:00
@section('title', trans('general.score-options'))
2016-07-29 11:52:45 +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.score-options') }}
2016-07-29 11:52:45 +08:00
<small>Score Options</small>
</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-6">
{!! $forms['rate']->render() !!}
2016-07-29 11:52:45 +08:00
</div>
<div class="col-md-6">
{!! $forms['signIn']->render() !!}
2016-07-29 11:52:45 +08:00
</div>
</div>
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
@endsection