{!! \App\Http\Helper::formOpen('billing-edit','POST','',array('class'=>'form-horizontal', 'role' => 'form', 'autocomplete' => 'off')) !!}
@if(count($errors))
@php($error = $errors->toArray())
@endif
{!! \App\Http\Helper::input(trans('common.Számlázási név'),'name',old('name',$billing->name),array('class'=>'form-control'),$error)!!}
{!! \App\Http\Helper::input(trans('common.Ország'),'country',old('country',$billing->country),array('class'=>'form-control'),$error)!!}
{!! \App\Http\Helper::input(trans('common.Irányítószám'),'zip',old('zip',$billing->zip),array('class'=>'form-control'),$error)!!}
{!! \App\Http\Helper::input(trans('common.Város'),'city',old('city',$billing->city),array('class'=>'form-control'),$error)!!}
{!! \App\Http\Helper::input(trans('common.Cím'),'address',old('address',$billing->address),array('class'=>'form-control'),$error)!!}
{!! \App\Http\Helper::input(trans('common.Adószám'),'tax_number',old('tax_number',$billing->tax_number),array('class'=>'form-control'),$error)!!}
{!! \App\Http\Helper::textarea(trans('common.Megjegyzés'),'note',old('note',$billing->note),array('class'=>'form-control'),$error) !!}
{!! \App\Http\Helper::formClose() !!}