@extends('layouts.admin_app') @section('title','Add Testimonial - Admin Dashboard') @section('content')

Add Testimonial

@include('flash-message')
{{@csrf_field()}}
@if($errors->has('name')) @component('components.error') {{$errors->first('name')}} @endcomponent @endif
@if($errors->has('email')) @component('components.error') {{$errors->first('email')}} @endcomponent @endif
@if($errors->has('heading_eng')) @component('components.error') {{$errors->first('heading_eng')}} @endcomponent @endif
@if($errors->has('description_eng')) @component('components.error') {{$errors->first('description_eng')}} @endcomponent @endif
@if($errors->has('heading_ar')) @component('components.error') {{$errors->first('heading_ar')}} @endcomponent @endif
@if($errors->has('description_ar')) @component('components.error') {{$errors->first('description_ar')}} @endcomponent @endif
@endsection