@extends('admin.layout.master') @section('title', 'استكشف السعودية') @section('content')
استكشف السعودية
إنشاء جديد
@csrf
الاسم باللغة العربية
@if ($errors->has('name_ar'))
{{ $errors->first('name_ar') }}
@endif
الاسم باللغة الإنجليزية
@if ($errors->has('name_en'))
{{ $errors->first('name_en') }}
@endif
العنوان بالعربية
@if ($errors->has('address_ar'))
{{ $errors->first('address_ar') }}
@endif
العنوان باللغة الإنجليزية
@if ($errors->has('address_en'))
{{ $errors->first('address_en') }}
@endif
المحتوي باللغه العربية
{{old('description_ar')}}
@if ($errors->has('description_ar'))
{{ $errors->first('description_ar') }}
@endif
المحتوي باللغه الإنجليزية
{{old('description_en')}}
@if ($errors->has('description_en'))
{{ $errors->first('description_en') }}
@endif
المدينة
@foreach($cities as $city)
{{ $city->name['ar'] }}
@endforeach
@if ($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif {{--
--}} {{--
--}} {{--
--}} {{--
الصورة
--}} {{--
--}} {{--
--}} {{--
--}} {{-- @if ($errors->has('gallery'))--}} {{--
{{ $errors->first('gallery') }}--}} {{-- @endif--}} {{--
--}}
الصورة
حفظ
@stop @section('scripts') @stop