@extends('layouts.generic') @section('page_title', __($page->title)) @section('share_url', route('home')) @section('share_title', getSetting('site.name') . ' - ' . getSetting('site.slogan')) @section('share_description', getSetting('site.description')) @section('share_type', 'article') @section('share_img', GenericHelper::getOGMetaImage()) @section('content')

{{$page->title}}

@if(in_array($page->slug,['help','privacy','terms-and-conditions']))

{{__("Last updated")}}: {{$page->updated_at->format('Y-m-d')}}

@endif
{!! $page->content !!}
@stop