@extends('page.layouts.main') @section('content')

{{ __('Sponsor / Exhibitor Application') }}

@if(session('message_success'))
{{ session('message_success') }}
@endif @if(session('message_danger'))
{{ session('message_danger') }}
@endif
@csrf
@error('event_id')

{{ $message }}

@enderror
@error('package_id')

{{ $message }}

@enderror
@error('company_name')

{{ $message }}

@enderror
@error('logo')

{{ $message }}

@enderror
@error('proposal_file')

{{ $message }}

@enderror

{{ __('Participants') }}

{{ __('Add participants who will attend the event on behalf of your company') }}

@if(old('participants')) @foreach(old('participants') as $index => $participant)

{{ __('Participant') }} {{ $index + 1 }}

@error('participants.'.$index.'.name')

{{ $message }}

@enderror
@error('participants.'.$index.'.email')

{{ $message }}

@enderror
@endforeach @endif
@endsection @push('scripts') @endpush