@extends('panel.authentication.layout.app')
@section('title', __('Register'))
@section('form')
@if ($setting->register_active == 1)
{{ __('Sign up') }}
@if ($setting->github_active || $setting->twitter_active || $setting->google_active || $setting->facebook_active)
@if ($setting->google_active)
{{ __('Login with Google') }}
@endif
@if ($setting->github_active)
{{ __('Login with Github') }}
@endif
@if ($setting->twitter_active)
{{ __('Login with Twitter') }}
@endif
@if ($setting->facebook_active)
{{ __('Login with Facebook') }}
@endif
{{ __('or') }}
@endif
@else
{{ __('Have an account?') }}
{{ __('Sign in') }}
@endsection