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

{{ Form::open(['id'=>'addTestimonialForm','files' => true]) }}
{{ Form::label('name', __('messages.testimonial.name').(':'), ['class' => 'form-label']) }} {{ Form::text('name', null, ['class' => 'form-control','required']) }}
{{ Form::label('description', __('messages.testimonial.description').(':'),['class' => 'form-label']) }} {{ Form::textarea('description', null, ['class' => 'form-control testimonialDescription','rows' => 6]) }}
{{ 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' => 'testimonialSave','data-loading-text' => " Processing..."]) }}
{{ Form::close() }}