@extends('layouts.admin') @section('title', 'Edit Product') @section('content')

Edit Product

@csrf

Leave empty if no discount

@if($product->image)
@else

No image

@endif

Leave empty to keep current image. Max 2MB (JPG, PNG, GIF)

Cancel

Product Gallery

@csrf

Max 2MB per image (JPG, PNG, GIF)

@if($product->gallery->count() > 0)
@foreach($product->gallery as $image)
@csrf @method('DELETE')
@endforeach
@else

No gallery images yet.

@endif
@endsection