Home Forums GetFund – A Professional Laravel Crowdfunding Platform Registration – some texts can not be translated Reply To: Registration – some texts can not be translated

#1321

To translate any attribute name, you will get an empty attributes array in bottom of file /root/resources/lang/en/validation.php

Replace
'attributes' => [],

with

    'attributes' => [
        'password'  => 'Heslo',
    ],

Add all of your attribute and translate them into attributes array

Best regards