@extends('admin.layouts.app') @section('title', isset($property) ? 'Edit Property' : 'Add Property') @section('content')
Back to Properties

{{ isset($property) ? 'Edit Property' : 'Add New Property' }}

Fill in the details below

1
Type
2
Details
3
Location
4
Media
5
Investment
6
Publish
@csrf @if (isset($property)) @method('PUT') @endif

What type of property is this?

@php $propertyTypes = [ 'flat' => [ 'icon' => 'M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4', 'label' => 'Flat/Apartment', ], 'house' => [ 'icon' => 'M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6', 'label' => 'House/Villa', ], 'plot' => [ 'icon' => 'M9 20l-5.447-2.724A1 1 0 013 16.382V5.618a1 1 0 011.447-.894L9 7m0 13l6-3m-6 3V7m6 10l4.553 2.276A1 1 0 0021 18.382V7.618a1 1 0 00-.553-.894L15 4m0 13V4m0 0L9 7', 'label' => 'Plot/Land', ], 'commercial' => [ 'icon' => 'M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4', 'label' => 'Commercial', ], ]; @endphp @foreach ($propertyTypes as $type => $config) @endforeach

Property Details

Flat Details

Property Location

Property Images

@if (isset($property) && $property->images->count() > 0)

Current Images

@foreach ($property->images as $image)
@if ($image->is_primary) Primary @endif
@endforeach
@endif

Drop images here or click to upload

JPEG, PNG up to 5MB each

Description *

@endsection @push('styles') @endpush @push('scripts') @endpush