@extends('managers.layout.master') @section('title', 'وحدة جديد') @section('stylesheets') @stop @section('content')

وحدة جديد

إنشاء جديد

برجاء إدخال البيانات الأساسية للوحده

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

تعريف الوحدة

@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('show')) {{ $errors->first('show') }} @endif
@if ($errors->has('deposit_type')) {{ $errors->first('deposit_type') }} @endif
@if ($errors->has('deposit_amount')) {{ $errors->first('deposit_amount') }} @endif
@if ($errors->has('distance')) {{ $errors->first('distance') }} @endif
@if ($errors->has('people_count')) {{ $errors->first('people_count') }} @endif
@if ($errors->has('suitable_for')) {{ $errors->first('suitable_for') }} @endif
{{-- ملوحظة : في حال كان الحجز لأكثر من ليله يكون المبيت مجاني--}}
@if ($errors->has('overnight')) {{ $errors->first('overnight') }} @endif

المجلس والجلسات

@if ($errors->has('sittings')) {{ $errors->first('sittings') }} @endif
@if ($errors->has('main_sittings')) {{ $errors->first('main_sittings') }} @endif
@if ($errors->has('additional_sittings')) {{ $errors->first('additional_sittings') }} @endif
@if ($errors->has('out_sittings')) {{ $errors->first('out_sittings') }} @endif
@if ($errors->has('external_settings')) {{ $errors->first('external_settings') }} @endif

حمام السباحة

@if ($errors->has('bool_type_id')) {{ $errors->first('bool_type_id') }} @endif

متدرج
غير متدرج

عدد غرف النوم

@if ($errors->has('rooms_count')) {{ $errors->first('rooms_count') }} @endif
@if ($errors->has('single_beds')) {{ $errors->first('single_beds') }} @endif
@if ($errors->has('big_beds')) {{ $errors->first('big_beds') }} @endif

المطبخ

@if ($errors->has('food_table_count')) {{ $errors->first('food_table_count') }} @endif
@foreach($kitchens_attributes as $kitchen)
{{$kitchen->title['ar']}}
@endforeach

دورات المياة

@if ($errors->has('bath_count')) {{ $errors->first('bath_count') }} @endif
@foreach($bath_attributes as $bath)
{{$bath->title['ar']}}
@endforeach

المرافق

@foreach($attachments as $attachment)
{{$attachment->title['ar']}}
@endforeach

الصور

صورة العرض

 

صور متعددة للوحدة

المعلومات

@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@stop @section('scripts') @stop