component-account.blade.php 497 B

123456789101112131415161718192021222324252627
  1. @extends('home.layouts.app')
  2. @section('title')
  3. {{ $title }}
  4. @endsection
  5. @section('style')
  6. {{ $style }}
  7. @if( isset($description) )
  8. <meta name="description" content="{!! prepareMetaDescription( $description ) !!}">
  9. @endif
  10. @endsection
  11. @section('content_top')
  12. {{ $content_top ?? '' }}
  13. @endsection
  14. @section('content')
  15. {{ $content }}
  16. @endsection
  17. @section('script')
  18. {{ $script }}
  19. <script src="{{ asset('js/home/groups/account.js') }}"></script>
  20. @endsection