@extends('admin.layouts.app') @section('title', $testimonial->exists ? 'Edit Testimonial' : 'New Testimonial') @section('content')
@csrf @if($testimonial->exists) @method('PUT') @endif
@error('name')
{{ $message }}
@enderror
@error('body')
{{ $message }}
@enderror
Cancel
@endsection