@extends('layouts.admin') @section('page_title', 'Edit Product: ' . $product->name) @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PATCH')
$
SKU: {{ $product->sku }}
Material: {{ $product->material }}
Type & Layout: {{ $product->type }} — {{ $product->layout }}

Optimized for JPG, PNG. Displayed on public product page.

@if($product->image_path)
Current Image
@else
No custom image
@endif
Cancel
@endsection