{!! Form::label('name', __('Name'). ':', ['class' => 'control-label thin-weight']) !!}
{!!
Form::text('name',
isset($data['owners']) ? $data['owners'][0]['name'] : null,
['class' => 'form-control'])
!!}
{!! Form::label('email', __('Email'). ':', ['class' => 'control-label thin-weight']) !!}
{!!
Form::email('email',
isset($data['email']) ? $data['email'] : null,
['class' => 'form-control'])
!!}
{!! Form::label('primary_number', __('Primary number'). ':', ['class' => 'control-label thin-weight']) !!}
{!!
Form::text('primary_number',
isset($data['phone']) ? $data['phone'] : null,
['class' => 'form-control'])
!!}
{!! Form::label('secondary_number', __('Secondary number'). ':', ['class' => 'control-label thin-weight']) !!}
{!!
Form::text('secondary_number',
null,
['class' => 'form-control'])
!!}