@extends('layouts.default')
@section('content')
{{ trans('labels.actors') }}
{{ Form::open(array('url' => 'actor/update')) }}
{{ trans('labels.name') }} :
{{ Form::text('actor_name', $actor->actor_name, array($acl['rsp']['r'])) }}
{{ trans('labels.surname') }} :
{{ Form::text('actor_surname', $actor->actor_surname, array($acl['rsp']['r'])) }}
{{ trans('labels.company') }} :
{{ Form::text('actor_company', $actor->actor_company, array($acl['rsp']['r'])) }}
{{ trans('labels.taxnr') }} :
{{ Form::text('actor_afm', $actor->actor_afm, array($acl['rsp']['r'])) }}
{{ trans('labels.sector') }} :
{{ Form::text('actor_title', $actor->actor_title, array($acl['crd']['r'])) }}
{{ trans('labels.address') }} :
{{ Form::text('actor_address_1', $actor->actor_address_1, array($acl['rsp']['r'])) }}
{{ trans('labels.pcode') }} :
{{ Form::text('actor_pcode', $actor->actor_pcode, array($acl['rsp']['r'])) }}
{{ trans('labels.phone') }} :
{{ Form::text('actor_phone', $actor->actor_phone, array($acl['rsp']['r'])) }}
{{ trans('labels.mobile') }} :
{{ Form::text('actor_mobile', $actor->actor_mobile, array($acl['rsp']['r'])) }}
{{ trans('labels.email') }} :
{{ Form::text('actor_email', $actor->actor_email, array($acl['rsp']['r'])) }}
{{ trans('labels.url') }} :
{{ Form::text('actor_url', $actor->actor_url, array($acl['rsp']['r'])) }}
{{ Form::hidden('id', $actor->id) }}
{{ Form::close() }}
@endsection