@extends('admin.layouts.master') @section('title', 'Add New Testimonial') @section('css') @endsection @section('content')

{{ __('Create Testimonial') }}

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@error('status')

{{ $message }}

@enderror
@if ($errors->has('position'))

{{ $errors->first('position') }}

@endif
@if ($errors->has('message'))

{{ $errors->first('message') }}

@endif
@if ($errors->has('order_no'))

{{ $errors->first('order_no') }}

@endif
Testimonial Image
Testimonial Image

Add Testimonial Image

@endsection @section('js') @endsection