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

{{ title_case(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
@stop