@layout('layouts.medium') @section('content')

{{ $person->person_name . ' ' . $person->person_surname . ' - [' . substr('00000' . $person->id, -5) . ']' }}


Διεύθυνση: {{ $person->person_address }}
{{ $person->person_pcode }}
e-mail: {{ $person->person_email_link }}
Τηλέφωνο: {{ $person->person_phone }}
Τηλέφωνο 2: {{ $person->person_phone2 }}
Κινητό: {{ $person->person_mobile }}
Ημερ. γέννησης: {{ $person->person_birthday }}

{{ HTML::link_to_route('change_pass' , 'αλλαγή στοιχείων πρόσβασης', array(), array('class'=>'button')) }}

{{ Form::open('person/attribs', 'POST') }} @foreach($attrs as $attr) @endforeach
Μέλος Μέλος ΔΣ Αθλητής Προπονητής Δωρητής
{{ $attr->year_id}} @if ($attr->is_member == 0) {{ Form::checkbox('p_attr[]', $attr->year_id . ':M', false, array('id' => 'p_attr')) }} @else {{ HTML::image('img/yes.png')}} @endif @if ($attr->is_mboard == 0) {{ Form::checkbox('p_attr[]', $attr->year_id . ':B', false, array('id' => 'p_attr')) }} @else {{ HTML::image('img/yes.png')}} @endif @if ($attr->is_athlete == 0) {{ Form::checkbox('p_attr[]', $attr->year_id . ':A', false, array('id' => 'p_attr')) }} @else {{ HTML::image('img/yes.png')}} @endif @if ($attr->is_trainer == 0) {{ Form::checkbox('p_attr[]', $attr->year_id . ':T', false, array('id' => 'p_attr')) }} @else {{ HTML::image('img/yes.png')}} @endif @if ($attr->is_sponsor == 0) {{ Form::checkbox('p_attr[]', $attr->year_id . ':S', false, array('id' => 'p_attr')) }} @else {{ HTML::image('img/yes.png')}} @endif
{{ Form::hidden('id', $person->id) }}

{{ Form::submit('ενημέρωση' , array( 'class' => 'button')) }}

{{ Form::close() }}


τελευταία ενημέρωση : {{ $person->updated_at }} από : {{ $person->updated_by }} @endsection