vendor/mrpix/shopping-city/src/Resources/views/storefront/component/seller/profile-owner.html.twig line 1

Open in your IDE?
  1. {% block profile_owner %}
  2.     {% if seller.mediaOwner is not null %}
  3.         {% set iconUrl = seller.mediaOwner.url %}
  4.     {% else %}
  5.         {% set iconUrl = '/bundles/webkulmvmarketplace/storefront/seller-profile/default/default.svg' %}
  6.     {% endif %}
  7.     <div class="shop-owner-icon">
  8.         <img class="shop-owner-icon-img" src="{{ iconUrl }}" alt="{{ seller.storeTitle }}"/>
  9.     </div>
  10. {% endblock %}