Editing: other_pages.blade.php
@extends(getTemplate().'.layouts.app') @section('content') <section class="cart-banner position-relative text-center"> <div class="container h-100"> <div class="row h-100 align-items-center justify-content-center text-center"> <div class="col-12 col-md-9 col-lg-7"> <h1 class="font-30 text-white font-weight-bold">{{ $page->title }}</h1> </div> </div> </div> </section> <section class="container mt-10 mt-md-40"> <div class="row"> <div class="col-12"> <div class="post-show mt-30"> {!! nl2br($page->content) !!} </div> </div> </div> </section> @endsection @push('scripts_bottom') @endpush
Save
Back