@extends('layouts.admin', ['header' => true, 'nav' => true, 'demo' => true]) @section('content')
{{ __('Overview') }}
{{ __('Edit Page') }}
@csrf
@for ($i = 0; $i < count($sections); $i++)
{{ $sections[$i]->section_title == "desc" ? 'Description' : str_replace('-', ' ', $sections[$i]->section_title) }}
{{ $sections[$i]->section_content }}
@endfor {{-- Check footer section --}} @if (Request::segment(3) != "footer")
{{ __('SEO Configuration') }}
{{-- Title --}}
{{ __('Title') }}
{{ $sections[0]->title }}
{{-- Meta Description --}}
{{ __('Description') }}
{{ $sections[0]->description }}
{{-- Keywords --}}
{{ __('Keywords') }}
{{ $sections[0]->keywords }}
@endif
@include('admin.includes.footer')
@endsection