@auth
@if(request()->is('shop-admin*'))
@if(isset($showPhoneVerifyModal) && $showPhoneVerifyModal)
@include('auth.modals.verify-phone')
@endif
@if(isset($showShopCreateModal) && $showShopCreateModal)
@include('shops.modals.create')
@endif
@if(isset($showShopPendingModal) && $showShopPendingModal)
@include('shops.modals.pending')
@endif
@if(isset($showShopRejectedModal) && $showShopRejectedModal)
@include('shops.modals.rejected')
@endif
@endif
@endauth