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

{{__('About Widget Settings')}}

@csrf
@php $blog_img = get_attachment_image_by_id(get_static_option('about_widget_logo'),null,false); $widget_logo_btn_label = 'Upload Image'; @endphp @if (!empty($blog_img))
@php $widget_logo_btn_label = 'Change Image'; @endphp @endif
{{__('Recommended image size 160x50 png image')}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection