@extends('layouts.admin') @section('title', __('company.about.title')) @section('content') @php $about = $profile->aboutData(); @endphp
@csrf @method('PUT')
{{ __('company.about.sections.hero') }}

أدخل فقرات قصة البداية والتطور (4 فقرات):

@for($i = 0; $i < 4; $i++) @endfor
{{ __('company.about.sections.timeline') }}

المراحل الزمنية للتطور (5 مراحل):

@foreach($about['timeline']['items'] ?? [] as $index => $item)
المرحلة #{{ $index + 1 }}
@endforeach
{{ __('company.about.sections.ceo') }}
@for($i = 0; $i < 4; $i++) @endfor
{{ __('company.about.sections.team') }}

{{ __('company.about.fields.center_title') }}

{{ __('company.about.fields.human_team_title') }}

@foreach($about['team']['human_members'] ?? [] as $idx => $member)
@endforeach

{{ __('company.about.fields.ai_team_title') }}

@foreach($about['team']['ai_members'] ?? [] as $idx => $member)
@endforeach
{{ __('company.about.sections.cta') }}
@endsection