@extends('admin.layouts.app') @section('title', 'تعديل التذكرة') @push('styles') @endpush @section('content')
تعديل التذكرة: {{ $ticket->title }}
العودة
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@php $images = $uploads->where('file_type', 'image'); $videos = $uploads->where('file_type', 'video'); @endphp @if($images->count() > 0)
@foreach($images as $image) @endforeach
@endif
@if($videos->count() > 0)
@foreach($videos as $video)
{{ basename($video->file_path) }}
@endforeach
@endif
هذا السعر سيُستخدم افتراضياً لأي خيار بدون سعر محدد
أضف خيارات مختلفة للتذكرة. إذا لم تكتب سعر، سيُستخدم السعر الأساسي.
@push('scripts') @endpush @endsection