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

{{ Form::open(['id'=>'addTestimonialForm','files' => true]) }}
{{ Form::label('name', __('messages.testimonial.name').(':'), ['class' => 'form-label required mb-3']) }} {{ Form::text('name', null, ['class' => 'form-control form-control-solid','required','placeholder' => __('messages.testimonial.name')]) }}
{{ Form::label('designation ', __('messages.testimonial.designation').(':'), ['class' => 'form-label required mb-3']) }} {{ Form::text('position', null, ['class' => 'form-control form-control-solid','required','placeholder' => __('messages.testimonial.designation')]) }}
{{ Form::label('description', __('messages.testimonial.description').(':'),['class' => 'form-label required mb-3']) }} {{ Form::textarea('description', null, ['class' => 'form-control form-control-solid description','rows' => 6,'placeholder' => __('messages.testimonial.description')]) }}
{{ __('messages.user.allowed_file_types') }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit','class' => 'btn btn-primary m-0','id' => 'testimonialSaveBtn','data-loading-text' => " Processing..."]) }}
{{ Form::close() }}