@extends('layouts.app') @section('title', $page['title']) @section('content')
@if (!empty($page['image']))
{{ $page['title'] }}
@endif
@if (is_string($page['content'])) {!! $page['content'] !!} @else
{{ json_encode($page['content'], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
@endif
@endsection