@extends('layouts.admin') @section('title', 'Edit Investor') @section('content')
@csrf @method('PUT')
Personal Details
Investment Criteria
£
£
is_cash_buy) ? 'checked' : '' }}>
@php $strategies = [ 'BMV' => 'Below Market Value', 'Refurbishment' => 'Refurbishment project', 'Rental' => 'Rental Yield', 'HMO' => 'HMO', 'Development' => 'Development opportunity', 'Other' => 'Other', 'All' => 'All (Show me everything)' ]; $selectedDeals = is_array($investor->deals_of_interest) ? $investor->deals_of_interest : []; @endphp @foreach($strategies as $key => $label)
@endforeach
Residential
@php $pTypes = ['House', 'Flat/Apartment', 'Bungalows', 'Land', 'Detached', 'Semi detached', 'Terraced', 'Any']; $selectedTypes = is_array($investor->property_types) ? $investor->property_types : []; @endphp @foreach($pTypes as $pt)
@endforeach
@php $selectedAreas = is_array($investor->areas_of_interest) ? $investor->areas_of_interest : []; $allAreas = ['London', 'South East', 'South West', 'East Midlands', 'West Midlands', 'North West', 'North East', 'Yorkshire', 'Scotland', 'Wales']; @endphp Hold Ctrl (Cmd) to select multiple

Updating profile will trigger a re-match check for existing listings.

@endsection @push('scripts') @endpush