@extends('layouts.vertical', ['title' => 'Edit Property']) @section('content')

Edit Property - {{ $property->ref_id }}

Property Information
@method('PUT')
is_freehold == 'Y' ? 'checked' : '' }}>
is_leasehold == 'Y' ? 'checked' : '' }}>
{{-- To balance --}}
Building Details
Area
Energy Rating
Property Options
Agency Information
Update Details
Multilingual Descriptions
@php $descByLang = $property->descriptions->keyBy('language_id'); @endphp
@foreach(($languages ?? collect()) as $index => $language)
@endforeach
Save Descriptions
@php $pricing = $property->pricing; @endphp

Commissions
Valuations
Taxes

Low Season
High Season
Save Pricing
Property Features
@foreach($features['parents'] as $parentId => $parentFeature)
{{ $parentFeature->name }}
@if(isset($features['grouped'][$parentId]) && count($features['grouped'][$parentId]) > 0) @foreach($features['grouped'][$parentId] as $childFeature)
@endforeach @endif
@endforeach
Save Features
Property Images

Drag and drop images here or click to browse

Supports: JPG, PNG, GIF (Max 10MB per image)

@foreach($property->images()->orderBy('position')->get() as $image)
Property Image
Position: {{ $image->position }}
@endforeach
Property Documents
@csrf
PDF or Word documents only (Max 50MB)
Uploaded Documents
@forelse($property->documents as $document) @empty @endforelse
Document Type File Name File Type Size Actions
{{ $documentTypes[$document->document_type_id] ?? 'Unknown' }} {{ $document->document }} {{ strtoupper($document->document_file_type) }} {{ $document->document_size }} Download
No documents uploaded yet.
@php $propertyAddress = $property->addresses()->first(); @endphp
Select an address from Google suggestions
You can drag the marker to adjust the location
Save Address
@php $propertyContact = $property->contacts()->first(); @endphp
Save Contacts
@endsection @section('script-bottom') @endsection