123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @extends('admin/layout')
- @section('content')
- <link href="{{asset('css/plugins/switchery/switchery.css')}}" rel="stylesheet">
- <style>
- @media screen and (max-width: 640px) {
- .sep-email tr td {
- display: block;
- text-align: left;
- }
- .sep-email > div {
- padding: 20px 12px !important;
- }
- }
- </style>
- <body class="gray-bg">
- <div class="wrapper wrapper-content animated fadeInRight">
- <div class="row">
- <div class="col-sm-12">
- <div class="ibox float-e-margins">
- <div class="ibox-content">
- <form method="get" class="form-horizontal">
- <div class="form-group">
- <label class="col-sm-2 control-label">详情:</label>
- <pre><label class="col-sm-10">{!! $data->mail_response !!}</label></pre>
- </div>
- <div class="hr-line-dashed"></div>
- <div class="form-group">
- <div class="col-sm-4 col-sm-offset-2">
- <button class="btn btn-white closeLayer" type="button" id="cancel">取消</button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- </div>
- </body>
- @endsection
- @section('footer')
- <script src="{{asset('js/plugins/switchery/switchery.js')}}"></script>
- @endsection
|