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

{{ __('Login to') }} {{ config('app.name') }}

@if ($message = Session::get('success')) @endif @if ($message = Session::get('error')) @endif
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@if (Route::has('password.request')) {{ __('Forgot Your Password?') }} @endif
@if (config('settings.registration') == 'enabled') {{ __('Sign Up') }} @endif

{{ __('By continuing, you agree to our') }} {{ __('Terms and Conditions') }} {{ __('and') }} {{ __('Privacy Policy') }}

@endsection