| 1 | <?php namespace Arcanesoft\Auth\Bases;  | 
            ||
| 12 | abstract class FormRequest extends BaseFormRequest  | 
            ||
| 13 | { | 
            ||
| 14 | /* ------------------------------------------------------------------------------------------------  | 
            ||
| 15 | | Properties  | 
            ||
| 16 | | ------------------------------------------------------------------------------------------------  | 
            ||
| 17 | */  | 
            ||
| 18 | /**  | 
            ||
| 19 | * The message format.  | 
            ||
| 20 | *  | 
            ||
| 21 | * @var string  | 
            ||
| 22 | */  | 
            ||
| 23 | protected $messageFormat = '<i class="fa fa-fw fa-exclamation-circle"></i> :message';  | 
            ||
| 24 | |||
| 25 | /* ------------------------------------------------------------------------------------------------  | 
            ||
| 26 | | Main Functions  | 
            ||
| 27 | | ------------------------------------------------------------------------------------------------  | 
            ||
| 28 | */  | 
            ||
| 29 | /**  | 
            ||
| 30 |      * {@inheritdoc} | 
            ||
| 31 | */  | 
            ||
| 32 | protected function formatErrors(Validator $validator)  | 
            ||
| 43 | }  | 
            ||
| 44 |