@extends('layouts.site') @section('content') @php $isAr = $locale === 'ar'; $titleField = $isAr ? 'title_ar' : 'title_en'; $excerptField = $isAr ? 'excerpt_ar' : 'excerpt_en'; $bodyField = $isAr ? 'body_ar' : 'body_en'; @endphp
NPCSH

{{ $page?->{$titleField} ?? ($isAr ? 'من نحن' : 'About') }}

{{ $page?->{$excerptField} }}

{!! $page?->{$bodyField} !!}

{{ $isAr ? 'يركز البرنامج على الرعاية الإنسانية المتخصصة التي تجمع بين السلامة والعلاج والتأهيل والتمكين، مع احترام كرامة المستفيد وحماية خصوصيته.' : 'The program focuses on specialized humanitarian care that combines safety, treatment, rehabilitation, and empowerment while respecting beneficiary dignity and privacy.' }}

@endsection