legal-notice.blade.php 566 B

12345678910111213141516171819
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="container mt-5">
  4. <div class="col-12">
  5. <p class="font-weight-bold text-lighter text-uppercase">{{ $page->title ?? 'Legal Notice' }}</p>
  6. <div class="card border shadow-none">
  7. <div class="card-body p-md-5 text-justify mx-md-3" style="white-space: pre-line">
  8. @if($page && $page->content)
  9. {!! $page->content !!}
  10. @endif
  11. </div>
  12. </div>
  13. </div>
  14. </div>
  15. @endsection
  16. @push('meta')
  17. <meta property="og:description" content="{{ $page->title ?? 'Legal Notice' }}">
  18. @endpush