@extends('backend.layouts.master') @section('title') Candidats - {{ $election->name }} @endsection @section('body') @endsection @section('content')
Candidats - {{ $election->name }}
@foreach ($candidates as $candidate) @endforeach
Nom Image Votes Actions
{{ $candidate->name }} @if ($candidate->image) @endif {{ $candidate->vote_count }} Edit
@csrf @method('DELETE')
@endsection