@extends('layouts.admin') @section('title', 'Edit Profile') @section('content')

{{ $user->name }}

{{ strtoupper($user->role) }}
{{ $user->email }}
@if($user->phone_number || $user->phone)
{{ $user->phone_number ?? $user->phone }}
@endif
Member since {{ $user->created_at->format('M Y') }}
@if(session('success')) @endif
@csrf @method('PUT')

Personal Details

Where you're located

Investment Profile

Cash Buyer Status

Toggle this if you are a verified cash buyer

is_cash_buy) ? 'checked' : '' }}>
@php $interests = [ 'BMV' => 'Below Market Value', 'HMO' => 'Houses in Multiple Occupation', 'Land' => 'Development Land', 'BTL' => 'Buy to Let', 'Commercial' => 'Commercial', 'Distressed' => 'Distressed Sale', 'R2R' => 'Rent to Rent', 'SA' => 'Serviced Accom.', 'Auction' => 'Auction Properties', ]; $userInterests = explode(', ', $user->property_interests ?? ''); @endphp @foreach($interests as $key => $label)
@endforeach

Corporate Information

Profile Bio

This information helps agents find the best properties for you.

Security Settings

Update your password to keep your account secure. Leave blank if you don't want to change it.

@error('current_password') {{ $message }} @enderror
@error('password') {{ $message }} @enderror

Use the "Save Changes" button in the sidebar to update your password along with other profile details.

@endsection