@extends('layouts.app') @php $locale = app()->getLocale(); $isRtl = $locale === 'ar'; $currency = \App\Models\Setting::currencyLabel($locale); @endphp @section('title', $isRtl ? 'حصة جديدة' : 'New Class') @section('content')

{{ $isRtl ? 'إنشاء حصة' : 'Create Class' }}

{{ $isRtl ? 'إضافة حصة جديدة' : 'Add a new class' }}

@if($errors->any())

{{ $isRtl ? 'يرجى تصحيح الأخطاء التالية:' : 'Please fix the following errors:' }}

@endif
@csrf
{{ $currency }}
{{ $isRtl ? 'إلغاء' : 'Cancel' }}
@endsection