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

@icon('login') {{ title_case(trans('auth.log_in')) }}

{!! csrf_field() !!} @include('auth/forms/login/' . $authMethod)
@if(count($socialDrivers) > 0)
@foreach($socialDrivers as $driver => $name) @icon('auth/' . $driver) {{ trans('auth.log_in_with', ['socialDriver' => $name]) }} @endforeach @endif
@stop