@extends('layouts.app') @section('content')
Dashboard
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach($participants as $participant)
@csrf @method('PUT')
Nom et Prénom:
Téléphone:
@if($participant->jeux==1)Jeux de lancé cerceau @elseif($participant->jeux==2) Jeux puissance4 @else($participant->jeux==3) Tir au but @endif
@endforeach
@endsection