@extends('layouts.login', ['title' => trans('auth.login.title')]) @section('content')

{{ trans('auth.login.title') }}

@if (session()->has('info'))
{{ session()->get('info') }}
@endif @include('partials.errors')
{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{ trans('auth.login.password_forgotten') }}
{{ trans('auth.login.new_account') }}
@endsection