@extends('layouts.auth') @section('content')

{{__('Sign in to your account')}}

@csrf
@if (Route::has('password.request')) {{ __('Forgot your password?') }} @endif
{{ __('Sign in') }}
@if(config('settings.register') != 'disable')
{{__("Don't have an account yet?")}} {{__('Create an Account')}}
@endif @if(config('settings.register') != 'disable' AND env('GOOGLE_CLIENT_ID'))
{{ __('Google with Sign in') }}
@endif
@endsection