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

Edit University Partners Section

Back to Overview
@if ($errors->any()) @endif
@csrf @method('PUT')
Section Settings
The main heading for the university partners section
is_active ?? true) ? 'checked' : '' }}>
Toggle to show/hide this section on the website
Brief description that appears below the section title
University Partners
@if ($partnersSection && $partnersSection->data && isset($partnersSection->data['partners'])) @foreach ($partnersSection->data['partners'] as $index => $partner)
{{ $partner['name'] }}
{{ $partner['country'] }} @if (!empty($partner['ranking'])) Rank #{{ $partner['ranking'] }} @endif
@endforeach @endif
@if ( !$partnersSection || !$partnersSection->data || !isset($partnersSection->data['partners']) || count($partnersSection->data['partners']) == 0)
No Partners Added Yet

Click "Add Partner" to start building your university partners showcase.

@endif
Cancel
@endsection @push('styles') @endpush @push('scripts') @endpush