{{ translate('Sociale login') }}
{{ translate('Facebook') }}
{!! Form::checkbox('facebook_login', null, \App\BusinessSetting::where('type', 'facebook_login')->first()->value, ['id' => 'Checkbox_3']) !!}
{!! Form::text('social_face_id', $settings->social_face_id, ['class' => 'form-control', 'placeholder' => translate('ID')]) !!}
{!! Form::text('social_face_secret', $settings->social_face_secret, ['class' => 'form-control', 'placeholder' => translate('Secret')]) !!}
{{ translate('Google') }}
{!! Form::checkbox('google_login', null, \App\BusinessSetting::where('type', 'google_login')->first()->value, ['id' => 'Checkbox_4']) !!}
{!! Form::text('social_google_id', $settings->social_google_id, ['class' => 'form-control', 'placeholder' => translate('ID')]) !!}
{!! Form::text('social_google_secret', $settings->social_google_secret, ['class' => 'form-control', 'placeholder' => translate('Secret')]) !!}
{{ translate('Twitter') }}
{!! Form::checkbox('twitter_login', null, \App\BusinessSetting::where('type', 'twitter_login')->first()->value, ['id' => 'Checkbox_5']) !!}
{!! Form::text('social_twitter_id', $settings->social_twitter_id, ['class' => 'form-control', 'placeholder' => translate('ID')]) !!}
{!! Form::text('social_twitter_secret', $settings->social_twitter_secret, ['class' => 'form-control', 'placeholder' => translate('Secret')]) !!}