{{ $survey->name }}

@if(!$eligible) We only accept {{ $survey->limitPerParticipant() }} {{ \Str::plural('entry', $survey->limitPerParticipant()) }} per participant. @endif @if($lastEntry) You last submitted your answers {{ $lastEntry->created_at->diffForHumans() }}. @endif
@if(!$survey->acceptsGuestEntries() && auth()->guest())
Please login to join this survey.
@else @foreach($survey->sections as $section) @include('survey::sections.single') @endforeach @foreach($survey->questions()->withoutSection()->get() as $question) @include('survey::questions.single') @endforeach @if($eligible) @endif @endif