@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'تعديل شهادة التقدير' : 'Edit Certificate') @section('page_heading', app()->getLocale() === 'ar' ? 'تعديل شهادة التقدير' : 'Edit Certificate') @section('skip_page_hero', true) @php $isArabic = app()->getLocale() === 'ar'; @endphp @section('content')

{{ $isArabic ? 'تعديل شهادة التقدير' : 'Edit Certificate' }}

{{ $isArabic ? 'تحديث بيانات الشهادة الحالية بدون عناصر إضافية غير لازمة.' : 'Update the current certificate without unnecessary extra UI.' }}

@csrf @method('PUT')

{{ $isArabic ? 'الطالب' : 'Student' }}

{{ $certificate->student->first_name }} {{ $certificate->student->last_name }}

{{ $certificate->student->registration_number }}

{{ $isArabic ? 'المعاينة' : 'Preview' }}

{{ $certificate->type === 'upload' ? ($isArabic ? 'جاري تحميل الملف الحالي' : 'Loading current file') : ($isArabic ? 'اختر قالباً لإعادة الإنشاء' : 'Choose a template to regenerate') }}
@endsection @section('scripts') @endsection