@extends('backend.admin-master') @section('site-title') {{__('Site Identity')}} @endsection @section('style') @endsection @section('content')
@include('backend.partials.message')

{{__("Site Identity Settings")}}

@csrf
@php $blog_img = get_attachment_image_by_id(get_static_option('site_logo'),null,true); $blog_image_btn_label = 'Upload Image'; @endphp @if (!empty($blog_img))
@php $blog_image_btn_label = 'Change Image'; @endphp @endif
{{__('allowed image format: jpg,jpeg,png. Recommended image size 160x50')}}
@php $site_white_logo = get_attachment_image_by_id(get_static_option('site_white_logo'),null,true); $site_white_logo_btn_label = 'Upload Image'; @endphp @if (!empty($site_white_logo))
@php $site_white_logo_btn_label = 'Change Image'; @endphp @endif
{{__('allowed image format: jpg,jpeg,png. Recommended image size 160x50')}}
@php $site_favicon = get_attachment_image_by_id(get_static_option('site_favicon'),null,true); $site_favicon_btn_label = 'Upload Image'; @endphp @if (!empty($site_favicon))
@php $site_favicon_btn_label = 'Change Image'; @endphp @endif
{{__('allowed image format: jpg,jpeg,png. Recommended image size 40x40')}}
@php $site_breadcrumb_bg = get_attachment_image_by_id(get_static_option('site_breadcrumb_bg'),null,true); $site_breadcrumb_bg_btn_label = 'Upload Breadcrumb Image'; @endphp @if (!empty($site_breadcrumb_bg))
@php $site_breadcrumb_bg_btn_label = 'Change Breadcrumb Image'; @endphp @endif
{{__('allowed image format: jpg,jpeg,png, Recommended image size 1920x600')}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection