@include('profile.partials.update-profile-information-form')
@if (isset($user->address))
@include('client.partials.update-bank-address-form')
@else
Address and banking details not yet updated.
@endif
@if (isset($user->employment))
@include('client.partials.form-update-employer')
@else
Employment details not yet updated.
@endif
@if ('complete' == $user->step)
@foreach ($attachments as $att)
@endforeach
@else
Payslip,ID copy and Bank statements not yet uploaded.
@endif
@if(Auth::user()->role == 'ADMIN')
@include('client.partials.update-password-form')
@include('client.partials.delete-user-form')
@endif