@extends('layout.app') @section('content')

{{ $property ? 'Edit Property' : 'Add New Property' }}


@if($errors->any())
@endif
@csrf @if($property) @method('PUT') @endif
{{-- Property ID --}}
System generated unique ID.
{{-- Type --}}
{{-- Borough --}}
{{-- Address --}}
{{-- Neighborhood --}}
{{-- Bedrooms --}}
{{-- Bathrooms --}}
{{-- Sqft --}}
{{-- Rent Max --}}
{{-- Rent Min --}}
{{-- Amenities --}}
{{-- Available --}}
{{-- Description --}}

Cancel
@endsection