Full name: {{ $kin->name }}
Relationship: {{ $kin->relationship }}
Telephone: {{ $kin->telephone }}
Mobile: {{ $kin->mobile }}
email: {{ $kin->email }}
Address:
@if (!empty($kin->address1))
{{ $kin->address1 }},
@endif
@if (!empty($kin->address2))
{{ $kin->address2 }},
@endif
@if (!empty($kin->address3))
{{ $kin->address3 }},
@endif
@if (!empty($kin->town))
{{ $kin->town }},
@endif
@if (!empty($kin->postcode))
{{ $kin->postcode }}
@endif
@if (!empty($kin->country))
, {{ $kin->country }}
@endif
Note: {{ $kin->note }}
Primary:
@if ($kin->primary == 1)
Yes
@else
No
@endif