{{-- Flash Messages --}} @if (session('status')) @endif {{-- Blocked Account Flash Message --}} @if (Session::has('blocked') && Session::get('blocked')) @endif {{-- Delete Account Confirmation Flash Message --}} @if (Session::has('delete_account.deleted') && Session::get('delete_account.deleted')) @endif {{-- Title --}}

{{ __('messages.global.login') }}

{{-- Form --}}
{{-- CSRF --}} @csrf {{-- Account Type Field --}}
@if ($errors->has('account_type'))

{{ $errors->first('account_type') }}

@endif
{{-- Email Field --}}
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
{{-- Password Field --}}
@if ($errors->has('password'))

{{ $errors->first('password') }}

@endif
{{-- Remember Field --}}
{{-- Submit Button --}} {{ __('messages.global.forgot_password') }}