@extends('layouts.app') @section('content')
@include('auth/banner')
@action('login_form.before')
{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@action('login_form.before_submit')
@if (Eventy::filter('auth.password_reset_available', true)) {{ __('Forgot Your Password?') }} @endif
@action('login_form.after')
@endsection