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

{{ $data == null ? 'Add' : 'Update ' }} Testimonial {{ $data == null ? '' : '#' . $data->id }}

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

{{ $data == null ? 'Upload' : 'Update ' }} Testimonial Details

@csrf {{ $data != null ? method_field('PUT') : '' }}
{!! $errors->first('name', '

:message

') !!}
{!! $errors->first('comments', '

:message

') !!}
{!! $errors->first('image', '

:message

') !!}
0%
@endsection @push('css') @endpush @push('js') @endpush