<div class="prestoreinfos form">
<?php echo $this->Form->create('Prestoreinfo'); ?>
	<fieldset>
		<legend><?php echo __('Edit Prestoreinfo'); ?></legend>
	<?php
		echo $this->Form->input('id');
		echo $this->Form->input('email');
		echo $this->Form->input('country');
		echo $this->Form->input('state');
		echo $this->Form->input('fullname');
		echo $this->Form->input('password');
		echo $this->Form->input('created_at');
		echo $this->Form->input('updated_at');
	?>
	</fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>

		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Prestoreinfo.id')), array('confirm' => __('Are you sure you want to delete # %s?', $this->Form->value('Prestoreinfo.id')))); ?></li>
		<li><?php echo $this->Html->link(__('List Prestoreinfos'), array('action' => 'index')); ?></li>
	</ul>
</div>
