@extends('auth.layout.app') @section('title', __("Login")) @section('cardTitle', __('Sign In')) @section('cardText', __('Hi, welcome to :site_name.', ['site_name' => config('config.site_name')])) @section('styles') @endsection @section('content')
@if(session('status')) @endif
@csrf
@error('username')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@if(config('services.google.client_id') || config('services.facebook.client_id'))
@if(config('services.google.client_id')) @endif @if(config('services.facebook.client_id')) @endif
@endif
@endsection