@extends('simple-layout') @section('content')
 

{{ Str::title(trans('auth.log_in')) }}

{!! csrf_field() !!}
@include('auth.forms.login.' . $authMethod)
@include('components.custom-checkbox', [ 'name' => 'remember', 'checked' => false, 'value' => 'on', 'label' => trans('auth.remember_me'), ])
@if(count($socialDrivers) > 0)
@foreach($socialDrivers as $driver => $name)
@icon('auth/' . $driver) {{ trans('auth.log_in_with', ['socialDriver' => $name]) }}
@endforeach @endif @if($samlEnabled)
@icon('saml2') {{ trans('auth.log_in_with', ['socialDriver' => config('saml2.name')]) }}
@endif @if(setting('registration-enabled') && config('auth.method') !== 'ldap') @endif
@stop