@lang('marketplace::app.seller.profile.index.title') @section('breadcrumbs') @endSection {!! view_render_event('bagisto.seller.profile.index.before', ['seller' => $seller]) !!}

@lang('marketplace::app.seller.profile.index.title')

@lang('marketplace::app.seller.profile.index.edit-btn')

{{ $seller->shop_title }}

{{ $seller->full_address }}

@lang('marketplace::app.seller.profile.index.general.title')

@lang('marketplace::app.seller.profile.index.general.shop-title')

{{ $seller->shop_title }}

@lang('marketplace::app.seller.profile.index.general.shop-slug')

{{ $seller->url }}

@lang('marketplace::app.seller.profile.index.general.name')

{{ $seller->name }}

@lang('marketplace::app.seller.profile.index.general.email')

{{ $seller->email }}

@lang('marketplace::app.seller.profile.index.general.phone')

{{ $seller->phone }}

@lang('marketplace::app.seller.profile.index.about-store.title')

{!! $seller->description !!}

@lang('marketplace::app.seller.profile.index.meta.title')

@lang('marketplace::app.seller.profile.index.meta.meta-title')

{{ $seller->meta_title }}

@lang('marketplace::app.seller.profile.index.meta.meta-keywords')

{{ $seller->meta_keywords }}

@lang('marketplace::app.seller.profile.index.meta.meta-description')

{{ $seller->meta_description }}

@lang('marketplace::app.seller.profile.index.policy.title')

@lang('marketplace::app.seller.profile.index.policy.privacy')

{!! $seller->privacy_policy !!}

@lang('marketplace::app.seller.profile.index.policy.shipping')

{!! $seller->shipping_policy !!}

@lang('marketplace::app.seller.profile.index.policy.return')

{!! $seller->return_policy !!}

@lang('marketplace::app.seller.profile.index.address.title')

@lang('marketplace::app.seller.profile.index.address.address')

{{ $seller->address }}

@lang('marketplace::app.seller.profile.index.address.postcode')

{{ $seller->postcode }}

@lang('marketplace::app.seller.profile.index.address.city')

{{ $seller->city }}

@lang('marketplace::app.seller.profile.index.address.country')

{{ core()->country_name($seller->country) }}

@lang('marketplace::app.seller.profile.index.address.state')

{{ core()->states($seller->country) ->where('code', $seller->state) ->first() ?->default_name }}

@lang('marketplace::app.seller.profile.index.social.title')

@foreach (['facebook', 'twitter', 'pinterest', 'linkedin'] as $social) @endforeach
@if (core()->getConfigData('marketplace.settings.seller.enable_minimum_order_amount'))

@lang('marketplace::app.seller.profile.index.minimum-order-amount.title')

{{ core()->formatBasePrice($seller->minimum_order_amount) }}

@endif

@lang('marketplace::app.seller.profile.index.google-analytics.title')

@lang('marketplace::app.seller.profile.index.google-analytics.id')

{{ $seller->google_analytics_id }}

@lang('marketplace::app.seller.profile.index.shop-information.title')

@lang('marketplace::app.seller.profile.index.shop-information.admin-commission')

@php $commission = $seller->commission_enable ? round($seller->commission_percentage, 2) : core()->getConfigData('marketplace.settings.general.admin_commission_percentage'); @endphp

@lang('marketplace::app.seller.profile.index.shop-information.admin-commission-value', [ 'rate' => $commission, ])

@lang('marketplace::app.seller.profile.index.shop-information.allowed-categories')

@forelse ($allowedCategories as $category) {{ $category->name }} @empty @lang('marketplace::app.seller.profile.index.shop-information.no-categories') @endforelse

@lang('marketplace::app.seller.profile.index.shop-information.allowed-product-types')

@forelse ($allowedProductTypes as $productType) @lang($productType['name']) @empty @lang('marketplace::app.seller.profile.index.shop-information.no-product-types') @endforelse

@lang('marketplace::app.seller.profile.index.shop-information.payment-methods')

@forelse (payment()->getPaymentMethods() as $paymentMethod) {{ $paymentMethod['method_title'] }} @empty @lang('marketplace::app.seller.profile.index.shop-information.no-payment-methods') @endforelse

@lang('marketplace::app.seller.profile.index.shop-information.shipping-methods')

@forelse (shipping()->getShippingMethods() as $shippingMethod) {{ $shippingMethod['method_title'] }} @empty @lang('marketplace::app.seller.profile.index.shop-information.no-shipping-methods') @endforelse
{!! view_render_event('bagisto.seller.profile.index.after', ['seller' => $seller]) !!}