@if (count($errors) > 0)
Whoops! There were some problems with your input.
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if(Session::has('warn'))
{!!Session::get('warn')!!}
@endif
@if(Session::has('success'))
{!!Session::get('success')!!}
@endif
@if(Session::has('fails'))
{!! Lang::get('lang.alert') !!}!
{!!Session::get('fails')!!}
@endif
{!! Form::label('client_id',Lang::get('lang.client_id')) !!}
{!! $errors->first('client_id', ':message') !!}
{!! Form::text('client_id',$social->getvalueByKey($provider,'client_id'),['class' => 'form-control']) !!}
{!! Form::label('client_secret',Lang::get('lang.client_secret')) !!}
{!! $errors->first('client_secret', ':message') !!}
{!! Form::text('client_secret',$social->getvalueByKey($provider,'client_secret'),['class' => 'form-control']) !!}
{!! Form::label('redirect',Lang::get('lang.redirect')) !!}
{!! $errors->first('redirect', ':message') !!}
{!! Form::text('redirect',$social->getvalueByKey($provider,'redirect'),['class' => 'form-control']) !!}