@extends('backend.admin-master') @section('site-title') {{__('Quality Area')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('Quality Area Settings')}}

@csrf
@foreach(get_all_language() as $key => $lang)
@if(get_static_option('home_page_variant') != '04')
@endif @if(get_static_option('home_page_variant') == '04')
@endif
@endforeach
@if(get_static_option('home_page_variant') == '01')
@php $cta_image_upload_btn_label = 'Upload Background Image'; @endphp
@php $cta_bg_img = get_attachment_image_by_id(get_static_option('home_page_01_quality_area_background_image'),null,false); @endphp @if (!empty($cta_bg_img))
@php $cta_image_upload_btn_label = 'Change Background Image'; @endphp @endif
{{__('recommended image size is 950x530 pixel')}}
@endif @if(get_static_option('home_page_variant') == '02')
@php $cta_image_upload_btn_label = 'Upload Image'; @endphp
@php $cta_bg_img = get_attachment_image_by_id(get_static_option('home_page_02_quality_area_image'),null,false); @endphp @if (!empty($cta_bg_img))
@php $cta_image_upload_btn_label = 'Change Image'; @endphp @endif
{{__('recommended image size is 650x380 pixel')}}
@endif @if(get_static_option('home_page_variant') == '04')
@php $cta_image_upload_btn_label = 'Upload Image'; @endphp
@php $cta_bg_img = get_attachment_image_by_id(get_static_option('home_page_04_quality_area_image'),null,false); @endphp @if (!empty($cta_bg_img))
@php $cta_image_upload_btn_label = 'Change Image'; @endphp @endif
{{__('recommended image size is 570x590 pixel')}}
@endif
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection