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