@extends('layouts.app') @php $locale = app()->getLocale(); $isRtl = $locale === 'ar'; $currency = \App\Models\Setting::currencyLabel($locale); @endphp @section('title', $isRtl ? 'إضافة معدة' : 'Add Equipment') @section('content')

{{ $isRtl ? 'إضافة معدة' : 'Add Equipment' }}

{{ $isRtl ? 'تسجيل معدة جديدة' : 'Register a new equipment item' }}

@if($errors->any())

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

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