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

Edit Product

@csrf
💱 Currency:
Rate: 1 IDR = {{ number_format($currencies[$selectedCurrency]['rate'] ?? 1, 6) }} {{ $selectedCurrency }}

Harga dalam Rupiah (IDR)

Auto convert to {{ $selectedCurrency }}

Leave empty if no discount

Auto convert to {{ $selectedCurrency }}

@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