@section('title','Edit Topical') @include('layout.header') @include('layout.sidebar')

Edit Topical

@method('PUT') @csrf
@php $imagePath = public_path($topicals->topical_image_en); if (file_exists($imagePath)) { $imageUrl = asset($topicals->topical_image_en); } else { $imageUrl = asset('images/default.jpg'); } @endphp ';
@php $imagePath = public_path($topicals->topical_image_hi); if (file_exists($imagePath)) { $imageUrl = asset($topicals->topical_image_hi); } else { $imageUrl = asset('images/default.jpg'); } @endphp ';
@php $imagePath = public_path($topicals->topical_image_gu); if (file_exists($imagePath)) { $imageUrl = asset($topicals->topical_image_gu); } else { $imageUrl = asset('images/default.jpg'); } @endphp ';
@include('layout.footer')