@extends('layouts.auth') @section('title', 'Log In') @section('content')

Welcome back

Sign in to your Tenseal account

@if (session('status'))
{{ session('status') }}
@endif
@csrf
Forgot password?
@if ($errors->any() || session('error'))
{{ session('error') ?? $errors->first() }}
@endif
@include('partials.google-signin')
@endsection