<?php $__env->startSection('content'); ?>
<div class="col-md-12 content-header" >
    <h1><i class="fa fa-user"></i> System users</h1>
</div>

<section class="content">
<div class="row">
    <div class="col-md-12">
        <!--    Hover Rows  -->
        <a href="<?php echo e(route('users.create')); ?>" class="btn btn-primary btn-sm pull-right" data-toggle="ajax-modal"> <i class="fa fa-user-plus"></i> New User</a> <br/><br/>
        <?php if(Session::has('flash_notification.message')): ?>
        <?php echo message(); ?>

        <?php endif; ?>
        <div class="panel panel-default">
            <div class="panel-heading">
                Users
            </div>
            <div class="panel-body">
                    <table class="table table-bordered table-striped table-hover datatable">
                        <thead>
                        <tr>
                            <th></th>
                            <th>Photo </th>
                            <th>Name </th>
                            <th>Username </th>
                            <th>Email </th>
                            <th>Phone </th>
                            <th>Action </th>
                        </tr>
                        </thead>
                        <tbody>
                        <?php foreach($users as $user): ?>
                        <tr>
                            <td></td>
                            <td><img src="<?php echo e(asset($user->photo != '' ? 'assets/img/uploads/'.$user->photo : 'assets/img/uploads/no-image.jpg' )); ?>" class="listthumb img-circle" width="60px"/></td>
                            <td><?php echo e($user->name); ?> </td>
                            <td><?php echo e($user->username); ?> </td>
                            <td><?php echo e($user->email); ?> </td>
                            <td><?php echo e($user->phone); ?> </td>
                            <td>
                                <?php echo edit_btn('users.edit', $user->id); ?>

                                <?php if(Auth::user()->id != $user->id): ?>
                                <?php echo delete_btn('users.destroy', $user->id); ?>

                                <?php endif; ?>
                            </td>
                        </tr>
                        <?php endforeach; ?>
                        </tbody>
                    </table>
            </div>
        </div>
        <!-- End  Hover Rows  -->
    </div>
</div>
</section>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>