@csrf @if (Auth::guard('petregistereduser')->check()) @elseif(Auth::guard('web')->check()) @endif
Name of Applicant / ( अर्जदाराचे नाव ) : *
Name of Owner's / ( मालकाचे नाव ) : *
Residential Address of Owner's / ( मालकाचा निवासी पत्ता )
@error('dog_age') {{ $message }} @enderror
@php if (!empty($data)) { $is_rabies_vaccinated = old('is_rabies_vaccinated') ?? ($data->is_rabies_vaccinated ?? ($data->dog_renewal_date_of_rabies_vaccination ?? null ? 'yes' : 'no')); $is_91_vaccinated = old('is_91_vaccinated') ?? ($data->is_91_vaccinated ?? ($data->dog_renewal_date_of_91_vaccination ?? null ? 'yes' : 'no')); } else { $is_rabies_vaccinated = old('is_rabies_vaccinated') ?? ''; $is_91_vaccinated = old('is_91_vaccinated') ?? ''; } @endphp
@if ($is_rabies_vaccinated == 'yes')
@endif @if ($is_91_vaccinated == 'yes')
@endif

@php $docs = []; if (!empty($data) && !empty($data->renewal_vaccination_card_doc)) { $decoded = json_decode($data->renewal_vaccination_card_doc, true); if (is_array($decoded)) { $docs = array_filter($decoded); } elseif (!empty($decoded)) { $docs = [$decoded]; } } @endphp
@if (count($docs) > 0) @foreach ($docs as $doc) @php $ext = pathinfo($doc, PATHINFO_EXTENSION); @endphp
@if (in_array(strtolower($ext), ['jpg', 'jpeg', 'png', 'gif'])) Nine in One Vaccination Certificate @elseif (strtolower($ext) === 'pdf') View File @endif
@endforeach @else

No Document uploaded.

@endif
Cancel