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

Add New Property

@if ($errors->any())
@endif @if(session('success'))
{{ session('success') }}
@endif
@csrf {{-- Property Info --}}

Property Info

@php $options = [ 'sell' => 'can_sell', 'rent' => 'can_rent', 'lease' => 'can_lease', ]; @endphp @foreach($options as $option => $field) @if(auth()->user()->$field) @endif @endforeach
{{-- Address --}}

Address

{{-- Details --}}

Details

@php $currentYear = date('Y'); @endphp
{{-- Amenities --}}

Amenities (Check what applies)

@php $amenitiesList = [ "gym", "spa", "security_24x7", "premium_lifts", "cctv_surveillance", "club_house", "mivan_construction", "jogging_track", "rainwater_harvesting", "power_backup", "water_supply_24x7", "swimming_area", "kids_play_area", "yoga_area", "barbeque_area", "co_working_space", "ultra_luxury", "gated_secured_homes", "basketball_court", "badminton_court", "table_tennis", "tennis_court", "restaurant_bar", "meditation_area", "spacious_parking", "multipurpose_hall", "fire_protection", "library", "mini_theatre", "garden_park" ]; @endphp
@foreach($amenitiesList as $amenity) @endforeach

Feature Image

Gallery Images

Click or drag multiple images to upload

Only image files are accepted

Floor Plans

Click or drag multiple floor plan images to upload

Only image files are accepted

For Seo

@endsection