@extends('layouts.admin') @section('title', 'إضافة تذكرة ' . ($type === 'vip' ? 'VIP' : 'عادية')) @section('page-title', 'إضافة تذكرة ' . ($type === 'vip' ? 'VIP' : 'عادية')) @section('breadcrumb') الرئيسية / {{ $type === 'vip' ? 'تذاكر VIP' : 'التذاكر العادية' }} / إضافة تذكرة @endsection @section('content')
@if($type === 'vip')
@else
@endif

إضافة تذكرة {{ $type === 'vip' ? 'VIP' : 'عادية' }}

أدخل بيانات صاحب التذكرة

@csrf @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if($type === 'vip')
@else
@endif

رقم الكرسي يجب أن يكون فريداً ولا يمكن تكراره

إلغاء
@endsection