<?php \Laravel\Section::start('content'); ?>
	<h1>Delete</h1>
	Are you sure you want to delete :
	<h2>
	<?php echo  $person->person_name . ' ' . $person->person_surname  ; ?> <br/>
	</h2>
	<br/><br/>
	<span>
		<?php echo  HTML::link_to_route('persons' , 'Cancel', array(), array('class'=>'button')) ; ?>
		<?php echo  Form::open('person/delete', 'DELETE', array('style' => 'display:inline ;' )) ; ?>
		<?php echo  Form::hidden('id', $person->id) ; ?>
		<?php echo  Form::submit('delete' , array( 'class' => 'button')) ; ?>
		<?php echo  Form::close(); ?>
	</span>
<?php \Laravel\Section::stop(); ?>


<?php echo view('layouts.default')->with(get_defined_vars())->render(); ?>