 

<?php $__env->startSection("content"); ?>
        <div class="container">
            <h1>YOUR</br>LOOKNOW</h1>
        </div> 
       <div class="container ">
            <div class="row">
                <div class="col-md-3">
                    <a href="#">
			<?php echo HTML::image($user->img_path,"",['class'=>"img-responsive",'style'=>'width:300px;height:250px']); ?>

		    </a>
                </div>
                <div class="col-md-9 well">
                    <h2><?php echo $user->name; ?></h2>
                    <div class="row">
                        <div class="col-md-4 inline-content">
			  <a href="<?php echo URL::to('admin/front/profile'); ?>">
                            <p>like</p>
                            <p class="highlight"><?php echo $like_num; ?></p>
			  </a>
                        </div>
                        <div class="col-md-4 inline-content">
			  <a href="<?php echo URL::to('admin/front/profile_follow'); ?>">
                            <p>follow</p>
                            <p class="highlight"><?php echo $follow_num; ?></p>
			  </a>
                        </div>
                        <div class="col-md-4">
                            <a class="btn btn-default btn-lg btn-block" href="#"><span class="glyphicon glyphicon-cog"></span>profile setting</a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div class="container">
		<br>
            <div class="row">
		<?php foreach($lookers as $looker): ?>
		<div class="grid8 align-center">
			<a href="<?php echo URL::to('admin/front/lookerinfo/'.$looker->id); ?>">
			<?php echo HTML::image($looker->photo,"",['class' => "img-responsive img-circle",'style'=>'width:100px;height:100px']); ?>

                        <p><?php echo $looker->name; ?></p>
			</a>
                </div>
		<?php endforeach; ?>
            </div>
        </div>
        <div class="container inline-content">
            <a href="<?php echo URL::to('admin/front'); ?>" class="btn btn-default">MORE</a>
        </div>
<?php $__env->stopSection(); ?>

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