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

Edit Testimonial

Back
@if ($errors->any())
Please fix the following:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@if($testimonial->photo)

{{ $testimonial->name }}
@endif
{{-- Delete is intentionally available only on edit page. --}}
Cancel
@endsection @push('scripts') @endpush