@extends('layouts.default') @section('content')
Warning: Undefined variable $person in /home/abazis/apps-5/euroclub/resources/views/persons/edit.blade.php on line 4

Warning: Attempt to read property "get_info" on null in /home/abazis/apps-5/euroclub/resources/views/persons/edit.blade.php on line 4

{{ mb_strtoupper($person->person_name . ' ' . $person->person_surname, 'UTF-8') }} [{{ $person->id }}]

{{ trans('labels.upd') }}

@method("PATCH") @csrf
{{ mb_strtoupper(trans('labels.player'), 'UTF-8') }} :
{{ Form::text('player_id', $person->player_id, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.name'), 'UTF-8') }} :
{{ Form::text('person_name', $person->person_name, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.surname'), 'UTF-8') }} :
{{ Form::text('person_surname', $person->person_surname, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.office'), 'UTF-8') }} :
{{ Form::text('person_office', $person->person_office, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.offphone'), 'UTF-8') }} :
{{ Form::text('person_off_phone', $person->person_off_phone, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.address'), 'UTF-8') }} :
{{ Form::text('person_address', $person->person_address, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.pcode'), 'UTF-8') }} :
{{ Form::text('person_pcode', $person->person_pcode, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.phone'), 'UTF-8') }} :
{{ Form::text('person_phone', $person->person_phone, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.mobile'), 'UTF-8') }} :
{{ Form::text('person_mobile', $person->person_mobile, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.email'), 'UTF-8') }} :
{{ Form::text('person_email', $person->person_email, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.birthday'), 'UTF-8') }} :
{{ Form::text('person_birthday', $person->person_birthday, array($acl['rsp']['r'],'class' => 'date')) }}
{{ mb_strtoupper(trans('labels.language'), 'UTF-8') }} :
{{ Form::text('person_language', $person->person_language, array($acl['rsp']['r'])) }}
{{ mb_strtoupper(trans('labels.getinfo'), 'UTF-8') }} :
{{ Form::checkbox('get_info', '1', $person->get_info, array($acl['rsp']['r'])) }}
 
 
{{ Form::submit('Save' , array( 'class' => 'button bn ok')) }}
{{ Form::hidden('id', $person->id) }}
@endsection