@section('title','Add Recipe Category') @include('layout.header') @include('layout.sidebar')

Edit Recipe Category

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