
<?php $__env->startSection("usercontent"); ?>
<h2> <?php echo e(trans('updates.followers')); ?> (<?php echo e($userinfo->followers()->count()); ?>)</h2>

    <div class="setting-form">
        <br><br>
        <?php if($follows->count() > 0): ?>
            <div class="profile-section follow-images ">

                <?php foreach($follows as $follow): ?>

                    <a class="follow-image big" href="/profile/<?php echo e($follow->follower->username_slug); ?>" title="<?php echo e($follow->follower->username); ?>">
                        <img src="<?php echo e(makepreview($follow->follower->icon, 's', 'members/avatar')); ?>" width="90" height="90" alt="<?php echo e($follow->follower->username); ?>">
                        <span><?php echo e($follow->follower->username); ?></span>
                    </a>

                <?php endforeach; ?>
            </div>
        <div class="clear"></div>
            <?php echo $follows->render(); ?>

            <?php else: ?>
            <?php echo $__env->make('errors.emptycontent', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
        <?php endif; ?>

    </div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make("pages.users.userapp", array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>