@extends('public') @section('header-buttons') @if(setting('registration-enabled', false)) {{ trans('auth.sign_up') }} @endif @stop @section('content')

{{ title_case(trans('auth.log_in')) }}

{!! csrf_field() !!} @include('auth/forms/login/' . $authMethod)
@if(count($socialDrivers) > 0)

{{ trans('auth.social_login') }}

@if(isset($socialDrivers['google'])) @endif @if(isset($socialDrivers['github'])) @endif @endif
@stop