@php $fontFamily = \App\Models\Setting::get('admin_font_family', 'Inter'); $fontWeights = \App\Models\Setting::get('admin_font_weights', '400,500,600,700'); $fontWeightsUrl = preg_replace('/\s*,\s*/', ';', $fontWeights); $fontFamilyUrl = str_replace(' ', '+', $fontFamily); $googleFontsUrl = "https://fonts.googleapis.com/css2?family={$fontFamilyUrl}:wght@{$fontWeightsUrl}&display=swap"; @endphp @vite(['resources/css/app.css', 'resources/js/app.js'])

{{ __('Admin Login') }}

{{ __('Sign in to your admin account') }}

@csrf @if($errors->any())

{{ __('There were errors with your submission') }}

    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif