{{-- Extends layout --}} @extends('layout.default') {{-- Content --}} @section('content')

@csrf @isset($batch->id) {{ method_field('PATCH')}} @endisset @if ($errors->any())
Error!
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($errors->has('participant_name')) {{ $errors->first('participant_name') }} @endif
@error('email') {{ $message }} @enderror
@error('phone_no') {{ $message }} @enderror
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@error('gender') {{ $message }} @enderror
@error('aadhaar') {{ $message }} @enderror
@endsection @section('scripts') @endsection