@extends('public')
@section('header-buttons')
@if(setting('registration-enabled', false))
{{ trans('auth.sign_up') }}
@endif
@stop
@section('content')
{{ title_case(trans('auth.log_in')) }}
@if(count($socialDrivers) > 0)
{{ trans('auth.social_login') }}
@foreach($socialDrivers as $driver => $enabled)
@icon($driver, ['width' => 56])
@endforeach
@endif
@stop