<?php $__env->startSection('content'); ?>
<div class="container-fluid">
	<div class="row">
		<div class="col-md-8 col-md-offset-2">
			<div class="panel panel-default">
                            <div class="panel-heading"><center>Opciones Almacenista</center></div>                             
				<div class="panel-body">
					<?php if(count($errors) > 0): ?>
						<div class="alert alert-danger">
							<strong>Whoops!</strong> Hay algunos problemas!!!.<br><br>
							<ul>
								<?php foreach($errors->all() as $error): ?>
									<li><?php echo e($error); ?></li>
								<?php endforeach; ?>
							</ul>
						</div>
					<?php endif; ?>
                                        <?php if($alert = Session::get('alert-success')): ?>
                                            <div class="alert alert-success">
                                                <?php echo $alert; ?>

                                            </div>
                                        <?php endif; ?>
                                        
                                        <table WIDTH=100%>
                                                    <tr>
                                                        <td><center><img src="<?php echo e(url('images/producto.png')); ?>" width="80" height="80" title="Modulo Productos"></center></td>
                                                        <td><center><img src="<?php echo e(url('images/utensilio.jpg')); ?>" width="80" height="80" title="Modulo Activos"></center></td>
                                                        <td><center><img src="<?php echo e(url('images/reporte.png')); ?>" width="80" height="80" title="Modulo Reportes"></center></td>
                                                    </tr>
                                                    <tr>
                                                        <td><center><a href="<?php echo e(url('Mod_AlmaProducto')); ?>">Productos</a></center></td>
                                                        <td><center><a href="<?php echo e(url('Mod_AlmaActivo')); ?>">Consumibles</a></center></td>
                                                        <td><center><a href="<?php echo e(url('Mod_reportes')); ?>">Reportes</a></center></td>
                                                    </tr>                                               
                                                </table>
				</div>
			</div>
		</div>
	</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>