@extends('layouts.app') @section('title') إعدادات فوري - {{ $theater->name }} @endsection @section('content')
@include('inc.breadcrumb', [ 'breadcrumb_items' => [ __('messages.Home') => route('home'), __('messages.Halls') => route('admin.theaters.index'), 'إعدادات فوري' => 'active', ], ])
إعدادات فوري POS - {{ $theater->name }}
@csrf @method('PUT')
@error('fawry_merchant_code')
{{ $message }}
@enderror
@error('fawry_merchant_branch_code')
{{ $message }}
@enderror
@error('fawry_secret_key')
{{ $message }}
@enderror
@error('fawry_public_key')
{{ $message }}
@enderror يجب أن يكون المفتاح بتنسيق XML مثل: <RSAKeyValue><Modulus>...</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>
@if($theater->halls && $theater->halls->count() > 0)

Serial Numbers للقاعات
@foreach($theater->halls as $hall) @endforeach
اسم القاعة Serial Number Username Password
{{ $hall->name }} id}.pos_serial_number", $hall->pos_serial_number) }}" class="form-control form-control-sm" placeholder="أدخل Serial Number"> id}.pos_username", $hall->pos_username) }}" class="form-control form-control-sm" placeholder="أدخل Username"> id}.pos_password", $hall->pos_password) }}" class="form-control form-control-sm" placeholder="أدخل Password">
@endif
{{ __('messages.Cancel') }}
@endsection