<table class="table mb-0 table-striped">
<thead>
<tr>
<th scope="col">SL</th>
<th scope="col">Image</th>
<th scope="col">Change Image </th>
<th scope="col">Delete </th>
</tr>
</thead>
<tbody>
<form method="post" action="" enctype="multipart/form-data">
@csrf
@foreach ($multi as $key => $img)
<tr>
<th scope="row">{{ $key + 1 }}</th>
<td> <img src="{{ asset($img->multi_Image_url) }}" style="width:70; height: 40px;">
</td>
<td> <input type="file" class="form-group"
name="multi_img[{{ $img->id }}]"> </td>
<td>
<input type="submit" class="btn btn-primary px-4" value="Update Image " />
<a href="" class="btn btn-danger"> Delete </a>
</td>
</tr>
@endforeach
</form>
</tbody>
</table>