14 lines
342 B
PHP
14 lines
342 B
PHP
@extends('front.layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container mt-4 mb-0">
|
|
<h1 class="pb-2 fw-normal h2">{{ $title }}</h1>
|
|
<p class="mb-8 text-center p-3 bg-gradient bg-light text-dark">
|
|
{{ $description }}
|
|
</p>
|
|
<div>
|
|
{!! $content !!}
|
|
</div>
|
|
</div>
|
|
@endsection
|