<?php $__env->startSection('content'); ?>

<h1>Registered Users</h1>
<?php if($users->count() > 0): ?>
<ul>
<?php foreach($users as $list): ?>
<li><?php echo e($list->name); ?></li>
<?php endforeach; ?>
</ul>
<?php else: ?>
 <p>
 No lists found!
 </p>
 <?php endif; ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>