You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
1.0 KiB

<div class="text-center" style="border-bottom: 1px solid #e7e7e7; padding-bottom: 10px">
{{ trans('lang.lang') }} :
{!! FormField::formButton(
[
'route' => 'users.profile.switch-lang',
'method' => 'patch',
'title' => auth()->user()->lang != 'en' ? trans('lang.switch_tooltip', ['lang' => trans('lang.en')]) : ''
],
'EN',
['class' => 'btn btn-default btn-xs', 'id' => 'switch_lang_en']
+ (auth()->user()->lang == 'en' ? ['disabled' => 'disabled'] : []),
['lang' => 'en']
) !!}
{!! FormField::formButton(
[
'route' => 'users.profile.switch-lang',
'method' => 'patch',
'title' => auth()->user()->lang != 'id' ? trans('lang.switch_tooltip', ['lang' => trans('lang.id')]) : ''
],
'ID',
['class' => 'btn btn-default btn-xs', 'id' => 'switch_lang_id']
+ (auth()->user()->lang == 'id' ? ['disabled' => 'disabled'] : []),
['lang' => 'id']
) !!}
</div>