@extends('admin.master') @section('content') @php $imagePath = $edit_data->image ? str_replace('public/', '', $edit_data->image) : null; @endphp

Edit Category

Back
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

@if($imagePath && file_exists(public_path($imagePath))) @else
No Image
@endif
Upload new image only if you want to change old image.
@endsection