@extends('layouts.app') @section('title', __('auth.login_title')) @push('styles') @endpush @section('content')
@php $appLogo = \App\Domains\Settings\Models\Setting::get('app_logo'); @endphp @if($appLogo) {{ config('app.name') }} @else

{{ config('app.name') }}

@endif

{{ __('auth.login_subtitle') }}

@csrf
@error('email')

{{ $message }}

@enderror
@endsection