<?php \Laravel\Section::start('content'); ?>
	<h2><?php echo  $person->person_name . ' ' . $person->person_surname  ; ?> - [<?php echo  $person->id ; ?>]</h2>
	<br/>
	<table style="font-size:1.1em;">
		<tr height="35px">
			<td width="120px" class="notes">address:</td>
			<td><?php echo  $person->person_address ; ?><br/><?php echo  $person->person_pcode ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">office:</td>
			<td><?php echo  $person->person_office ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">e-mail:</td>
			<td><?php echo  $person->person_email_link ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">phone:</td>
			<td><?php echo  $person->person_phone ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">mobile:</td>
			<td><?php echo  $person->person_mobile ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">phone @ work:</td>
			<td><?php echo  $person->person_off_phone ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">date of birth:</td>
			<td><?php echo  $person->person_birthday ; ?></td>
		</tr>
		<tr height="35px">
			<td class="notes">language:</td>
			<td><?php echo  $person->person_language ; ?></td>
		</tr>
	</table>
	<br/>
	<span class="notes">last updated the <?php echo  $person->updated_at ; ?> by <?php echo  $person->updated_by ; ?></span>
	<br/>
	<p>
		<?php echo  HTML::link_to_route('persons' , 'back to members', array(), array('class'=>'button')) ; ?>
		<?php echo  HTML::link_to_route('change_pass' , 'change password an/or user name', array(), array('class'=>'button')) ; ?>
	</p>
	<br/>
<?php \Laravel\Section::stop(); ?>


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