<?php \Laravel\Section::start('content'); ?>
	<h1><?php echo  $registration->reg_name . ' ' . $registration->reg_surname  ; ?></h1>
	<h2>ID: <?php echo  $registration->id ; ?></h2>
	<p><span class="notes">address</span><br/>
		<?php echo  $registration->reg_address ; ?> <br/>
		<?php echo  $registration->reg_pcode ; ?>
	</p>
	<p><span class="notes">e-mail</span><br/>
		<?php echo  $registration->reg_email_link ; ?>
	</p>
	<p><span class="notes">office address</span><br/>
		<?php echo  $registration->reg_office ; ?> 
	</p>
	<p><span class="notes">office phone</span><br/>
		<?php echo  $registration->reg_off_phone ; ?> 
	</p>
	<p><span class="notes">phone</span><br/>
		<?php echo  $registration->reg_phone ; ?> 
	</p>
	<p><span class="notes">mobile</span><br/>
		<?php echo  $registration->reg_mobile ; ?> 
	</p>
	<p><span class="notes">birthday</span><br/>
		<?php echo  $registration->reg_birthday ; ?> 
	</p>
	<p><span class="notes">language</span><br/>
		<?php echo  $registration->reg_language ; ?> 
	</p>
	<p><span class="notes">membership type</span><br/>
		<?php echo  $registration->membership_type ; ?> 
	</p>
	<p><span class="notes">participate in competitions</span><br/>
		<?php echo  $registration->competition ; ?> 
	</p>

	<p><span class="notes">application form signed</span>
		<?php if($registration->reg_form_signed): ?>
			<?php echo  HTML::image('img/done.jpg', 'done') ; ?>	
		<?php else: ?>
			<?php echo  HTML::image('img/attn.png', 'done') ; ?>	
		<?php endif; ?>
	</p>
	<p><span class="notes">membershi fees paid</span>
		<?php if($registration->reg_fee_paid): ?>
			<?php echo  HTML::image('img/done.jpg', 'done') ; ?>	
		<?php else: ?>
			<?php echo  HTML::image('img/attn.png', 'done') ; ?>	
		<?php endif; ?>
	</p>
	
	
	<span class="notes">last updated the <?php echo  $registration->updated_at ; ?> by <?php echo  $registration->updated_by ; ?></span>
<br/><br/>
	<?php echo  HTML::link_to_route('registrations' , 'back to members', array(), array('class'=>'button')) ; ?>

<?php \Laravel\Section::stop(); ?>


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