0

I want to translate label. There is label:

{{ Form::label('name', 'name') }}

So, I need something like:

{{ Form::label('name', @lang('messages.name')) }}

I have an option, write it with <label> tag, but is there any option to achieve translation with laravelcollective/html

1 Answers1

1
{{ Form::label('name', trans('messages.name')) }}

works great! Hope it helps someone