{{ __('messages.vcard.new_testimonial') }}

{!! Form::open(['id'=>'addTestimonialForm', 'files' => 'true']) !!}
{{ Form::hidden('vcard_id', $vcard->id) }} {{ Form::label('name',__('messages.common.name').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('name', null, ['class' => 'form-control','required', 'placeholder' => __('messages.form.testimonial')]) }}
{{ Form::label('description', __('messages.common.description').':', ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::textarea('description', null, ['class' => 'form-control', 'placeholder' => __('messages.form.short_description'), 'rows' => '5' , 'required']) }}
{{ Form::button(__('messages.common.save'),['class' => 'btn btn-primary m-0','id' => 'testimonialSave','type'=>'submit']) }} {{ Form::button(__('messages.common.discard'),['class' => 'btn btn-secondary my-0 ms-5 me-0','data-bs-dismiss' => 'modal']) }}
{!! Form::close() !!}