@extends('Frontend.layout.main') @section('head') {{$pageData->meta_title() ?? 'Eldiar'}} @endsection @section('content') @include('Frontend.inc.banners')

{{$pageData->subtitle()}}

{!! $pageData->content?? '' !!}
{!!$pageData->excerpt() ?? '' !!} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))

* {{ session('success') }}

@endif
@csrf
@endsection