@extends('admin.layouts.main') @section('title') Add property @endsection @section('content')

Edit Property

Add property details

@csrf @method('PUT')

Drop Pictures here or click to upload.

@foreach($property->property_images as $property_image)
@endforeach
@php $features=explode(", ",$property->features) @endphp
property_for == 'RENT' ? 'checked' : ''}} value="RENT" onchange="handleRadioChange()" class="input-radio bs-radio">
property_for == 'BUY' ? 'checked' : ''}} value="BUY" onchange="handleRadioChange()" class="input-radio bs-radio" >
@error('date_error') {{$message}} @enderror

Drop Pictures here or click to upload.

@if($property->document) @php $name=basename($property->document); @endphp Download {{$name}} @endif
@if($property->property_status=="Sold" )
@elseif($property->property_status=="Rented")
@else
@endif
@endsection