@extends('layouts.app') @section('title', 'تعديل النموذج - نظام إدارة الحوالات الخارجية') @section('page-title', 'تعديل النموذج') @section('page-actions') العودة إلى النماذج @endsection @section('content')
معلومات النموذج
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('bank_id')
{{ $message }}
@enderror
@error('template_type')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('template_file')
{{ $message }}
@enderror
الملف الحالي: {{ basename($template->file_path) }}
الصيغة المسموح بها: DOC, DOCX. الحجم الأقصى: 5MB
معلومات النموذج

تاريخ الإضافة: {{ $template->created_at->format('Y-m-d H:i') }}

آخر تحديث: {{ $template->updated_at->format('Y-m-d H:i') }}

المصرف: {{ $template->bank->name }}

النوع: @if($template->template_type == 'transfer_request') طلب تحويل @elseif($template->template_type == 'currency_window') نافذة العملة @elseif($template->template_type == 'covenant') تعهد @elseif($template->template_type == 'confirmation') تأكيد @endif


إرشادات النموذج
تحديث ملف النموذج اختياري. إذا لم تقم بتحميل ملف جديد، سيتم الاحتفاظ بالملف الحالي.

يجب أن يكون النموذج بصيغة Word (DOCX) ويحتوي على المتغيرات المناسبة.

@endsection