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

{{ $message }}

@enderror
@foreach($termLocales as $locale => $label)
@if($locale === 'ar')

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

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

{{ $message }}

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