@extends('admin.layouts.app') @section('title', 'University Partners Management') @section('content')

University Partners Management

Edit Partners Section
@if(session('success')) @endif
Section Overview
{{ $partnersSection->title ?? 'Our Trusted University Partners' }}

{{ $partnersSection->content ?? 'We work directly with leading universities to provide you with the best opportunities.' }}

{{ ($partnersSection && $partnersSection->is_active) ? 'Active' : 'Inactive' }} {{ $partnersSection && $partnersSection->data && isset($partnersSection->data['partners']) ? count($partnersSection->data['partners']) : 0 }} partners configured
University Partners
{{ $partnersSection && $partnersSection->data && isset($partnersSection->data['partners']) ? count($partnersSection->data['partners']) : 0 }} Total
@if($partnersSection && $partnersSection->data && isset($partnersSection->data['partners']) && count($partnersSection->data['partners']) > 0)
@foreach($partnersSection->data['partners'] as $index => $partner)
@if(!empty($partner['logo'])) {{ $partner['name'] }} Logo @else @endif
{{ $partner['name'] }}
{{ $partner['country'] }}
@if(!empty($partner['display_name']))

Display Name: {!! $partner['display_name'] !!}

@endif
{{ $partner['badge'] ?? 'University' }} @if(!empty($partner['ranking'])) Rank: #{{ $partner['ranking'] }} @endif
@if(!empty($partner['logo']))
Logo: {{ $partner['logo'] }}
@endif
@endforeach
@else
No University Partners Configured

Start by adding your first university partner to showcase your institutional partnerships.

Add First Partner
@endif
@endsection @push('styles') @endpush