@extends('frontend.auth.master')
@section('content')
@use('App\Models\Setting')
@php
$settings = Setting::first()->values;
@endphp
{{ __('frontend::auth.login_now') }}
{{ __('frontend::auth.title') }}
@if (session()->has('error'))
{{ session()->get('error') }}
@endif
{{ __('frontend::auth.or_continue_with') }}
@endsection
@push('js')
@endpush