<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
artisaninweb / laravel-formvalidation-helper example snippets
Form::text('field-name','field-value',[
// Replace the error with you own.
Form::error('field-name','<p>You can put a custom html error here.</p>');
// Only replace the html tags
Form::error('field-name','<p>:message</p>');