@extends('front.layouts.app-auth') @push('page_css') @endpush @section('content') @include('front.components.breadcrumbs', [ 'currentPage' => 'Edit Offer', 'breadcrumbs' => [ ['label' => 'Sponsorships', 'url' => route('profile.sponsorships')] ] ])

Edit Sponsorship Offer

Back to Details
@csrf

Step 1: Select Beneficiary

@if ($beneficiary)

{{ $beneficiary->full_name }} @if($beneficiary->sport) ({{ $beneficiary->sport }}@if($beneficiary->position) – {{ $beneficiary->position }}@endif) @endif

{{ ucfirst($beneficiary->role_slug) }} Profile Preview

@else @endif

Step 2: Define Sponsorship Type & Amount

Installment Setup

Installment Date
Amount
Trigger
Notes
@forelse($sponsorship->installments as $index => $installment)
{{ $index + 1 }}
@empty
1
@endforelse
escrow_release ? 'checked' : '' }} disabled>

Step 3: Define Sponsorship Terms

@php $visibilityRights = is_string($sponsorship->visibility_rights) ? json_decode($sponsorship->visibility_rights, true) : ($sponsorship->visibility_rights ?? []); $visibilityRights = is_array($visibilityRights) ? $visibilityRights : []; @endphp
@if(isset($sponsorship->contract_file['original'])) @endif

Choose a file or drag & drop it here

JPEG, PNG, PDF, and MP4 formats, up to 50MB

Fund Distribution / Allocation

@if($sponsorship->fundDistributions && $sponsorship->fundDistributions->count() > 0) @foreach($sponsorship->fundDistributions as $index => $distribution)
@if($index === 0) @else @endif
@endforeach @else
@endif

Step 4: Review & Confirmation

Summary

Beneficiary
-
Type
-
Installments
-
Amount
-
Duration
-
Visibility
-
@endsection @push('page_script') @endpush