@extends('layouts.admin') @section('header', 'Edit Testimoni') @section('content')
@csrf @method('PUT')

Detail Testimoni

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Masukkan link video (misal: YouTube, Vimeo, atau direct link).

@php $currentProductId = old('product_id', $review->product_id); $activeCategoryId = ''; if (is_null($currentProductId) || $currentProductId == '') { $activeCategoryId = 'general'; } else { foreach($categories as $cat) { if($cat->products->where('id', $currentProductId)->isNotEmpty()) { $activeCategoryId = $cat->id; break; } } } @endphp
@foreach($categories as $category)
@forelse($category->products as $product) @empty

Tidak ada produk dalam kategori ini.

@endforelse
@endforeach
@php $reviewImages = $review->images ?? []; @endphp @for($i=0; $i<5; $i++) @endfor

Balasan Admin

Foto profil admin akan menggunakan pengaturan global.

@if($review->admin_photo)
Info: Testimoni ini memiliki foto admin khusus yang tersimpan sebelumnya.
@endif
Batal
@endsection