content.blade.php 512 B

12345678910111213141516171819202122
  1. @extends('admin::index')
  2. @section('content')
  3. <section class="content-header">
  4. <h1>
  5. {{ $header or trans('admin.title') }}
  6. <small>{{ $description or trans('admin.description') }}</small>
  7. </h1>
  8. </section>
  9. <section class="content">
  10. @include('admin::partials.error')
  11. @include('admin::partials.success')
  12. @include('admin::partials.exception')
  13. @include('admin::partials.toastr')
  14. {!! $content !!}
  15. </section>
  16. @endsection