@extends('layouts.simple') @section('content')
 

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

@include('auth.parts.login-message') @include('auth.parts.login-form-' . $authMethod) @if(count($socialDrivers) > 0)
@foreach($socialDrivers as $driver => $name)
@icon('auth/' . $driver) {{ trans('auth.log_in_with', ['socialDriver' => $name]) }}
@endforeach @endif @if(setting('registration-enabled') && config('auth.method') === 'standard') @endif
@stop