@extends('layouts.auth') @section('content')
{{ csrf_field() }}

{{ config('app.name') == 'FlowyTeam' ? __('app.welcomeToFlowyTeam') : __('app.welcomeToOKRI') }}

{{ config('app.name') == 'FlowyTeam' ? __('auth.authTitleFlowyTeam') : __('auth.authTitleOKRI') }}

@lang('app.or')

@if (session('message'))
{{ session('message') }}
@elseif(session('success'))
{{ session('success') }}
@endif @if ($err)
@if($err == 'error') @lang('app.errGoogleAuthenticationFailed') @elseif($err == 'error-microsoft') @lang('app.errMicrosoftAuthenticationFailed') @endif @if($err == 'no-user') @lang('app.errGoogleUserNotFound') @elseif($err == 'no-user-microsoft') @lang('app.errMicrosoftUserNotFound') @endif @if($err == 'user-not-exist') @lang('app.errGoogleUserNotExist') @elseif($err == 'user-not-exist-microsoft') @lang('app.errMicrosoftUserNotExist') @endif
@endif @if(!empty($messsage) && !empty($class))
{!! $messsage !!}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@lang('app.forgotPassword')?

@lang('app.dontHaveAnAccount')?@lang('app.signup')

@if($displayLanguages) {{__('app.language')}}: EN @foreach($languageSettings as $language) {{$language->language_display}} @endforeach @endif

@endsection ?>