@extends('layouts.admin') @section('title', 'Edit Property') @section('content')
Update Property Details
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
%
@if($property->image_url)
@endif
Leave blank to keep current image
Cancel
@endsection @push('scripts') @endpush