@if(!isset($tblPropertyDetail) && isset($hosts))
{!! html()->label('مالك العقار (Host):', 'created_by_id') !!}
{!! Form::select('created_by_id', $hosts, null, ['class' => 'form-control select2', 'placeholder' => 'ابحث واختر المالك...', 'required' => true]) !!}
@endif
{!! Form::label('title', __('اسم العقار'), ['class' => 'form-label']) !!}
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'أدخل اسم العقار']) !!}
{!! html()->label('نوع العقار:', 'property_type') !!}
@php
$propertyTypes = \App\Models\PropertyType::where('is_active', 1)->pluck('name_ar', 'id');
@endphp
{!! Form::select('property_type', $propertyTypes, null, ['class' => 'form-control', 'id' => 'property_type', 'placeholder' => 'اختر نوع العقار']) !!}
{!! Form::label('description', __('الوصف'), ['class' => 'form-label']) !!}
{!! Form::textarea('description', null, ['class' => 'form-control', 'rows' => 3, 'placeholder' => 'وصف تفصيلي للعقار...']) !!}