@extends('admin.master') @section('content')

Edit Product

Back
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Keyboard CTRL ধরে multiple select করো
Keyboard CTRL ধরে multiple select করো
@forelse($edit_data->images as $image) @php $imagePath = str_replace('public/', '', $image->image); @endphp
@if($imagePath && file_exists(public_path($imagePath))) @else
No Image
@endif @csrf
@empty

No image found

@endforelse
@endsection