@extends('layouts.app') @section('title', 'Tambah Kandidat') @section('content')

Admin / Kandidat / Tambah Kandidat

Detail Kandidat Baru
Kembali
@csrf
@error('event_id')
{{ $message }}
@enderror
@error('candidates')
{{ $message }}
@enderror @php $oldCandidates = old('candidates', [[]]); @endphp
@foreach($oldCandidates as $index => $oldCandidate)
Kandidat #{{ $index + 1 }}
@error("candidates.{$index}.name")
{{ $message }}
@enderror
@error("candidates.{$index}.photo")
{{ $message }}
@enderror
@error("candidates.{$index}.sort_order")
{{ $message }}
@enderror
@error("candidates.{$index}.vision_mission")
{{ $message }}
@enderror
@endforeach
Batal
@endsection @section('page-script') @endsection