@php $coverImage = $store->getMetaData('cover_image', true); @endphp
@if ($canContactStore = (MarketplaceHelper::isEnabledMessagingSystem() && (! auth('customer')->check() || $store->id != auth('customer')->user()->store->id)))

{{ __('Email :store', ['store' => $store->name]) }}

{{ __('All messages are recorded and spam is not tolerated. Your email address will be shown to the recipient.') }}

{!! $contactForm ->setFormOption('class', 'ps-form--contact-us contact-form bb-contact-store-form') ->setFormInputClass('form-control') ->setFormLabelClass('d-none sr-only') ->modify( 'submit', 'submit', Botble\Base\Forms\FieldOptions\ButtonFieldOption::make() ->addAttribute('data-bb-loading', 'button-loading') ->cssClass('ps-btn') ->label(__('Send message')) ->wrapperAttributes(['class' => 'form-group submit']) ->toArray(), true ) ->renderForm() !!}
@include(MarketplaceHelper::viewPath('includes.contact-form-script'))
@endif

{{ $products->total() }} {{ __('Products found') }}

{{ __('View') }}

@if ($products->isNotEmpty()) @foreach($products as $product)
{!! Theme::partial('product-item', ['product' => $product, 'lazy' => false]) !!}
@endforeach @endif
{!! $products->withQueryString()->links() !!}
@if ($products->isNotEmpty()) @foreach($products as $product)
{!! Theme::partial('product-item-grid', ['product' => $product, 'lazy' => false]) !!}
@endforeach @endif
{!! $products->withQueryString()->links() !!}
@if ($canContactStore)
@endif