<?php $__env->startSection('title'); ?>
	Registo
<?php $__env->stopSection(); ?>

<?php $__env->startSection('breadcrumb'); ?>
    <?php echo HTML::breadcrumb(array('Home' => url($admin_prefix), 'Registos' => route('admin.voter.index'), 'Ver' => '')); ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('master'); ?>
<p class="lead">
	<em>Email:</em> <?php echo e($item->email ? $item->email : '--'); ?><br>
	<em>Facebook ID:</em> <?php echo e($item->facebook_id ? $item->facebook_id : '--'); ?><br>
	<em>Twitter ID:</em> <?php echo e($item->twitter_id ? $item->twitter_id : '--'); ?><br>
	<em>Nome:</em> <?php echo $item->name ? $item->name : '--'; ?><br>
</p>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('clumsy::templates.edit', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>