@extends('layouts.admin') @section('main')
@if ($entrant)

{{ $entrant->age->type }}

{{ $entrant->gender->type }}

{{ $entrant->postcode }}

{{ $entrant->email }}

@foreach ($answers as $answer) @if ($question != $answer->question->id)

{{$answer->question->name}}

@endif

{{ $answer->value }}

@endforeach Back to entrants @endif
@stop