<div class="prestoreinfos view">
<h2><?php echo __('Prestoreinfo'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($prestoreinfo['Prestoreinfo']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Email'); ?></dt>
		<dd>
			<?php echo h($prestoreinfo['Prestoreinfo']['email']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Country'); ?></dt>
		<dd>
			<?php echo h($prestoreinfo['Prestoreinfo']['country']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('State'); ?></dt>
		<dd>
			<?php echo h($prestoreinfo['Prestoreinfo']['state']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Fullname'); ?></dt>
		<dd>
			<?php echo h($prestoreinfo['Prestoreinfo']['fullname']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Password'); ?></dt>
		<dd>
			<?php echo h($prestoreinfo['Prestoreinfo']['password']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Created At'); ?></dt>
		<dd>
			<?php echo h($prestoreinfo['Prestoreinfo']['created_at']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Updated At'); ?></dt>
		<dd>
			<?php echo h($prestoreinfo['Prestoreinfo']['updated_at']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Prestoreinfo'), array('action' => 'edit', $prestoreinfo['Prestoreinfo']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Prestoreinfo'), array('action' => 'delete', $prestoreinfo['Prestoreinfo']['id']), array('confirm' => __('Are you sure you want to delete # %s?', $prestoreinfo['Prestoreinfo']['id']))); ?> </li>
		<li><?php echo $this->Html->link(__('List Prestoreinfos'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Prestoreinfo'), array('action' => 'add')); ?> </li>
	</ul>
</div>
