@extends('backend.layouts.main') @section('title', 'Property-update') @section('main-container')
@if(session()->has('success'))
{{ session('success') }}
@endif @if(session()->has('error'))
{{ session('error') }}
@endif
Property Information
@csrf @method('PATCH')
@foreach (json_decode($property->surroundings) as $index => $surroundingGroup)
@foreach ($surroundingGroup->points as $point)
@endforeach
@endforeach
Discard
@endsection