<?php $__env->startSection('header'); ?>
    <link rel="stylesheet" href="/adminlte/plugins/colorpicker/bootstrap-colorpicker.min.css">
    <?php $__env->stopSection(); ?>
<?php $__env->startSection("content"); ?>
        <!-- Content Header (Page header) -->
<section class="content-header">
    <h1>
        <?php echo e(trans('themes.themes')); ?>

    </h1>
    <ol class="breadcrumb">
        <li><a href="#"><i class="fa fa-dashboard"></i> <?php echo e(trans('admin.dashboard')); ?></a></li>
        <li class="active"><?php echo e(trans('themes.themes')); ?></li>
    </ol>
</section>

<!-- Main content -->
<section class="content">

<div class="row">
    <?php foreach($themes as $key =>  $theme): ?>
        <?php $t_status = getenvcong('CurrentTheme') ==$theme['t_code'] ? 'actived' : 'notactived' ?>
       <?php if($t_status=='actived'): ?>
        <div class="col-lg-4 col-md-6 col-xs-12">
        <?php echo $__env->make('_admin._particles.theme_box', $theme, array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
        </div>
        <?php endif; ?>
    <?php endforeach; ?>

    <?php foreach($themes as $theme): ?>
        <?php $t_status = getenvcong('CurrentTheme') ==$theme['t_code'] ? 'actived' : getenvcong('CurrentTheme') =='on' ? 'actived' : 'notactived' ?>
        <?php if($t_status == 'notactived'): ?>
            <div class="col-lg-4 col-md-6 col-xs-12">

                <?php echo $__env->make('_admin._particles.theme_box', $theme, array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
            </div>
        <?php endif; ?>
    <?php endforeach; ?>
</div>


</section><!-- /.content -->
<?php $__env->stopSection(); ?>
<?php $__env->startSection('footer'); ?>

<?php $__env->stopSection(); ?>
<?php echo $__env->make("_admin.adminapp", array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>