<div class="prestoreinfos form">
<?php echo $this->Form->create('Prestoreinfo'); ?>
	<fieldset>
		<legend><?php echo __('Add Prestoreinfo'); ?></legend>
	<?php
		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->Html->link(__('List Prestoreinfos'), array('action' => 'index')); ?></li>
	</ul>
</div>
