@extends('admin.layout') @section('custom-style') @endsection @section('content')

Settings

@if ($errors->any())
@foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif @if(\Session::has('error'))
  • {!! \Session::get('error') !!}
  • @endif @if(\Session::has('success'))
  • {!! \Session::get('success') !!}
  • @endif
    {{csrf_field()}}
    @include('admin.setting.header-footer-logo') @include('admin.setting.home-page-section', ['video_categories' => $video_categories, 'active_homepage_video_categories' => $active_homepage_video_categories]) @include('admin.setting.footer-cookie-text') @include('admin.setting.footer-copyright-text') @include('admin.setting.social-links')
    @endsection @section('custom-scripts') @endsection