@extends('backend.layouts.layout') @section('content')
@if(get_setting('system_logo_black') != null) @else @endif

{{ translate('Welcome to') }} {{ env('APP_NAME') }}

{{ translate('Login to your account.') }}

@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if(env('MAIL_USERNAME') != null && env('MAIL_PASSWORD') != null) @endif
@if (env("DEMO_MODE") == "On")
admin@example.com 123456
@endif
@endsection @section('script') @endsection