m_custom_page.blade.php 792 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <link rel="stylesheet" href="{{ static_asset('assets/css/vendors.css') }}">
  6. <link rel="stylesheet" href="{{ static_asset('assets/css/aiz-core.css') }}">
  7. <link rel="stylesheet" href="{{ static_asset('assets/css/custom-style.css') }}">
  8. </head>
  9. <body>
  10. <section class="py-4 mb-4 bg-light">
  11. <div class="container text-center">
  12. <div class="row">
  13. <div class="col-lg-6 text-center mx-auto">
  14. <h1 class="fw-600 h4">{{ $page->getTranslation('title') }}</h1>
  15. </div>
  16. </div>
  17. </div>
  18. </section>
  19. <section class="mb-4">
  20. <div class="container-fluid">
  21. {!! $page->getTranslation('content') !!}
  22. </div>
  23. </section>
  24. </body>
  25. </html>