@extends('admin.layouts.app') @section('title', 'Edit Testimonial') @section('breadcrumb')
  • Testimonials
  • Edit
  • @endsection @section('heading', 'Edit Testimonial') @section('subheading', 'Update testimonial.') @section('content') @if (session('success'))
    {{ session('success') }}
    @endif
    @csrf @method('PUT')
    @error('name')

    {{ $message }}

    @enderror
    @error('role')

    {{ $message }}

    @enderror
    @error('description')

    {{ $message }}

    @enderror
    @if ($testimonial->avatar_url)
    @endif @error('avatar')

    {{ $message }}

    @enderror
    @endsection