@if(session()->has('message'))
@endif
@if(session()->has('error'))
@endif
{{ trans('labels.Successlabel') }}
{{ session()->get('message') }}{{ trans('labels.WarningLabel') }}
{{ session()->get('error') }}
{!! Form::open(array('url' => route('company-info.update', [$result['Company_infoData']['id']]), 'method'=>'post', 'class' => 'form-horizontal', 'id' => 'addNewLeadSources', 'enctype'=>'multipart/form-data')) !!}
{!! Form::close() !!}
{!! Form::text('name', $result['Company_infoData']['name'], array('class'=>'form-control', 'id'=>'name', 'required'=>'required')) !!}
{!! Form::text('phone_number', $result['Company_infoData']['phone_number'], array('class'=>'form-control', 'id'=>'phone_number', 'required'=>'required')) !!}
{!! Form::text('email_address', $result['Company_infoData']['email_address'], array('class'=>'form-control', 'id'=>'email_address', 'required'=>'required')) !!}
{!! Form::text('address1', $result['Company_infoData']['address'], array('class'=>'form-control', 'id'=>'address1', 'required'=>'required')) !!}
{!! Form::text('address2', $result['Company_infoData']['address2'], array('class'=>'form-control', 'id'=>'address2')) !!}
{!! Form::text('country', $result['Company_infoData']['country'], array('class'=>'form-control', 'id'=>'country', 'required'=>'required')) !!}
{!! Form::text('province', $result['Company_infoData']['province'], array('class'=>'form-control', 'id'=>'province', 'required'=>'required')) !!}
{!! Form::text('city', $result['Company_infoData']['city'], array('class'=>'form-control', 'id'=>'city', 'required'=>'required')) !!}
{!! Form::text('postal_code', $result['Company_infoData']['postal_code'], array('class'=>'form-control', 'id'=>'postal_code', 'required'=>'required')) !!}
{!! Form::text('website', $result['Company_infoData']['website'], array('class'=>'form-control', 'id'=>'website')) !!}