@extends('admin.zsi.layouts.admin') @section('content')
{{-- Header --}}
{{ isset($monthlyFauna) ? 'Edit Image' : 'Add Image' }}
{{ isset($monthlyFauna) ? 'Update image details below' : 'Enter image details below' }}
{{-- Form --}}
@csrf @if (isset($monthlyFauna)) @method('PUT') @endif @csrf
{{-- Image --}}
@error('szImageName')
{{ $message }}
@enderror {{-- Current / Selected Image Preview --}}
@if (isset($monthlyFauna) && $monthlyFauna->szImageName)

Current Image

{{ $monthlyFauna->szImageAlt }} @else

Selected Image

Image Preview @endif
JPG, JPEG, PNG or WEBP
{{-- Link --}}
{{-- English Details --}}
English Details
{{-- Image Alt --}}
{{-- Image Caption --}}
{{-- Image title --}}
@error('szImageTitle')
{{ $message }}
@enderror
{{-- Image Sub Title --}}
{{-- Hindi Details --}}
Hindi Details
{{-- Image Alt Hindi --}}
{{-- Image Caption Hindi --}}
{{-- Image Title Hindi --}}
@error('szImageTitleHindi')
{{ $message }}
@enderror
{{-- Image Sub Title Hindi --}}
{{-- Buttons --}}

@endsection