@extends('layouts.app') @section('title', 'Profile') @once {{-- custom css --}} @push('css') @endpush @endonce {{-- page connect --}} @section('content')
@if ($profile['avatar']) Profile Image @else Profile Image @endif

{{ $profile['f_name'] }} {{ $profile['m_name'] }} {{ $profile['l_name'] }}

{{ $profile['title'] }}

{{ $profile['email'] }}

{{ $profile['cell_phone'] }}

Personal Information

License Information

Industry Recognized Memberships :
@php // Decode the JSON string into an array $memberships = json_decode( $profile['industry_recognized_memberships'], true, ); @endphp @if (!empty($memberships) && is_array($memberships))
    @foreach ($memberships as $membership)
  • {{ $membership }}
  • @endforeach
@else

--

@endif
Industry Recognized Designations :
{{-- {{ dd($profile); }} --}}
@php // Decode the JSON string into an array $designations = json_decode( $profile['industry_recognized_designations'], true, ); @endphp @if (!empty($designations) && is_array($designations))
    @foreach ($designations as $designations)
  • {{ $designations }}
  • @endforeach
@else

--

@endif
Speciality :
@php // Decode the JSON string into an array $speciality = json_decode($profile['speciality'], true); @endphp @if (!empty($speciality) && is_array($speciality))
    @foreach ($speciality as $specialityItem)
  • {{ $specialityItem }}
  • @endforeach
@else

--

@endif
{{-- --}}

Additional Information

Company Information

Company :
Company Address :
Company Website :
Company Phone Number :
Legal Disclaimer(s) :
{{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}}

BROKERAGE INFORMATION

{{--
@csrf
--}}
@csrf
Brokerage License Number :
Brokerage MLS Code :
Managing Broker Name :
Managing Broker Phone Number :
Managing Broker Email Address :
Managing Broker License Number :
Managing Broker MLS Code :
{{-- {{ dd($profile); }} --}}
@include('profile.particles.personal_info_form')
@include('profile.particles.password_change') {{-- --}}
@include('profile.particles.profile_image_upload') {{-- --}}
@endsection {{-- custom js --}} @push('js')