@extends('admin.layout') @section('title', __('admin.edit_place')) @section('content')
{{-- Header --}}
{{ __('admin.back') }} {{ __('admin.places') }}

{{ __('admin.edit_place') }}: {{ $place->getTranslation('name', 'en') }}

@csrf @method('PUT') {{-- Tabs --}}
{{-- Tab: Basic Info --}}
{{-- Bilingual: Name --}}
{{ __('admin.name_en') }} *
EN | ع AR

English

@error('name_en')

{{ $message }}

@enderror

العربية

@error('name_ar')

{{ $message }}

@enderror
{{-- Bilingual: Description --}}
{{ __('admin.description_en') }}
EN | ع AR

English

العربية

{{-- Social Links --}}

{{ __('admin.social_links') }}

{{-- Tab: Location --}} {{-- Tab: Features --}} {{-- Tab: Images --}} {{-- Tags Section --}} @php $tagGroups = \App\Services\TagService::getAvailableTags(); $currentTags = old('tags', $place->tags ?? []); $groupLabels = ['mood' => '😌 Mood / المزاج', 'food' => '🍽️ Food / الطعام', 'interests' => '⭐ Interests / الاهتمامات', 'companion' => '👫 Companion / نوع الخرجة', 'extra' => '💰 Extra']; @endphp
Tags (Mood & Interests)
@foreach($tagGroups as $group => $tags)

{{ $groupLabels[$group] ?? $group }}

@foreach($tags as $key => $tag) @endforeach
@endforeach
{{-- Submit --}}
{{ __('admin.cancel') }}
{{-- Auto-Tag Button --}}
@csrf
{{-- Send Push Notification --}}

Send Push Notification

Send a push notification to all app users about this place.

@csrf
@endsection ob_start();