@if(session('success-message-update-address'))
{{ session('success-message-update-address') }}
@endif
@php
$homeChecked = "";
$officeChecked = "";
$otherChecked = "";
@endphp
@if($useraddressdetail->user_location_type == "Home")
@php
$homeChecked = "checked";
@endphp
@endif
@if($useraddressdetail->user_location_type == "Office")
@php
$officeChecked = "checked";
@endphp
@endif
@if($useraddressdetail->user_location_type == "Other")
@php
$otherChecked = "checked";
@endphp
@endif