{{ __('messages.testimonial.edit_testimonial') }}

{{ Form::open(['id' => 'editTestimonialForm', 'files' => true]) }}
{{ Form::hidden('id', null, ['id' => 'testimonialId']) }}
{{ Form::label('name', __('messages.testimonial.name') . ':', ['class' => 'form-label']) }} {{ Form::text('name', null, ['class' => 'form-control', 'id' => 'editTestimonialName', 'required','placeholder'=>__('messages.testimonial.name')]) }}
{{ Form::label('description', __('messages.testimonial.description') . ':', ['class' => 'form-label']) }} {{ Form::textarea('description', null, ['class' => 'form-control testimonialDescription', 'id' => 'editTestimonialDescription', 'rows' => 6,'placeholder'=>__('messages.testimonial.description')]) }}
{{ Form::label('image', __('messages.common.profile') . ':', ['class' => 'form-label']) }}
{{ __('messages.allow_file_type') }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit', 'class' => 'btn btn-primary m-0 btnSave', 'id' => 'editTestimonialSave', 'data-loading-text' => " Processing..."]) }}
{{ Form::close() }}