@extends('layouts.main_dashboard.app') @section('title', __('dashboard.Edit Term')) @section('page_heading', __('dashboard.Edit Term')) @section('page_subtitle', 'تحديث بيانات الفصل الدراسي وربطه بالسنة المناسبة.') @section('page_actions') {{ __('dashboard.View All Terms') }} @endsection @section('content') @php $termLocales = [ 'ar' => 'العربية', 'en' => 'English', ]; @endphp
@csrf @method('PUT')
@error('year_id')

{{ $message }}

@enderror
@foreach($termLocales as $locale => $label)
getStoredTranslation($locale)) }}" class="w-full rounded-2xl border border-surface-200 bg-white px-4 py-3 text-sm outline-none transition focus:border-brand-400 dark:border-surface-700 dark:bg-surface-900" {{ $locale === 'ar' ? 'required' : '' }} dir="{{ $locale === 'ar' ? 'rtl' : 'ltr' }}" > @if($locale === 'ar')

العربية هي الاسم الأساسي المعتمد في النظام.

@endif @error("name_translations.$locale")

{{ $message }}

@enderror
@endforeach
{{ __('dashboard.Cancel') }}
@endsection