# fluentform/1.2.4/resources/views/admin/docs/index.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 1.2.4. 48 lines.

- Page: https://pluginprobe.com/plugins/fluentform/1.2.4/code/resources/views/admin/docs/index.php
- Raw: https://pluginprobe.com/plugins/fluentform/1.2.4/raw/resources/views/admin/docs/index.php
- Modified: 2018-01-24T15:32:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/1.2.4/code/resources/views/admin/docs/index.php#L10-L20`.

```php
<h2><?php _e('Help & Documentation','fluentform');?></h2>
<div class="ff_form_wrap wrap">
	<div class="ff_documentaion_wrapper">
		<?php do_action('fluentform_before_documentation_wrapper'); ?>
		
		<div class="ff_doc_top_blocks">
			<div class="ff_block block_1_3">
                <div class="ff_block_box text-center">
                    <img src="<?php echo $icon_path_url; ?>img/support.png" />
                    <h3>Need And Expert Support?</h3>
                    <p>Our EXPERTS would like to assist you for your query and any customization.</p>
                    <p><a target="_blank" class="button button-primary" href="https://wpfluentform.com/contact">Contact Support</a></p>
                </div>
			</div>
			<div class="ff_block block_1_3">
                <div class="ff_block_box text-center">
                    <img src="<?php echo $icon_path_url; ?>img/bug.png" />
                    <h3>Found a Bug?</h3>
                    <p>Please report us and we promise we will fix that as soon as humanly possible</p>
                    <p><a target="_blank" class="button button-primary" href="https://github.com/fluentform/fluentform/issues">Report Bug on Github</a></p>
                </div>
			</div>
			<div class="ff_block block_1_3">
                <div class="ff_block_box text-center">
                    <img src="<?php echo $icon_path_url; ?>img/love.png" />
                    <h3>Love this Plugin?</h3>
                    <p>Please write a review in wp.org plugin repository. We appreciate it!</p>
                    <p><a target="_blank" class="button button-primary" href="https://wordpress.org/support/plugin/fluentform/reviews/#new-post">Write Review</a></p>
                </div>
			</div>
            <div class="ff_block block_1_3">
                <div class="ff_block_box">
                    <h3>User Guides</h3>
                    <p>Please check the following <b>Tutorials and Documentation</b> for getting started with FluentForm</p>
                    <ul>
						<?php foreach ($user_guides as $user_guide): ?>
                            <li><a target="_blank" href="<?php echo $user_guide['link']; ?>"><?php echo $user_guide['title']; ?></a></li>
						<?php endforeach; ?>
                    </ul>
                </div>
            </div>
		</div>
        
        <?php do_action('fluentform_after_documentation_wrapper') ?>
        
	</div>
</div>
		
```
