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

Edit Testimonial

Update customer testimonial details

Back to List
@csrf @method('PUT')
@error('customer_name')
{{ $message }}
@enderror
@error('customer_role')
{{ $message }}
@enderror
@error('testimonial_content')
{{ $message }}
@enderror
@if($testimonial->customer_image)

Current Image:

{{ $testimonial->customer_name }}
@endif

Leave empty to keep current image. Recommended: Square, max 2MB.

@error('customer_image')
{{ $message }}
@enderror
@error('rating')
{{ $message }}
@enderror

Lower numbers appear first.

@error('display_order')
{{ $message }}
@enderror

Note: Maximum 3 active testimonials allowed at once.

Cancel
@endsection