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

Edit Product: {{ $product->title }}

Back to List
@if($errors->any())
@endif
@csrf @method('PUT')
@if($product->thumbnail) Click to select thumbnail @else Click to select thumbnail @endif
@php $galleryIds = $product->images->pluck('id')->toArray(); @endphp
@php $selectedTags = $product->tags->pluck('id')->toArray(); @endphp @foreach($tags as $tag) @endforeach
Cancel
@endsection @section('scripts') @endsection