@section('title', config('app.name', 'Streamline') .' - '. __('Login')) @section('description', __('Login to your account'))
@csrf {{ __('Login to your account') }} @if (session('message'))
  • {{ session('message') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{ __('Log In') }} @if (Route::has('password.request'))
{{ __('Forgot your password?') }}
@endif
@if (config('streamline.social_login.enabled')) {{ __('Or') }} @includeIf('auth.partials.social-logins') @endif