@extends('layouts.empty') @section('content')
@include('partials.message')
{{ __('Login') }}
@if (\Config::get('settings.login_status') == 0)
Login page under maintenance
@elseif ($blocked ?? false)
🔒

Member Web Login Unavailable

Web login for members is currently disabled.
Please use the mobile app to access your account.

Need help? Contact the church office.

@else
@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endif
@endsection