@extends('storefront.layouts.main') @section('title', 'Login') @section('content')
Welcome Back

Sign in to your account

@if(session('status'))
{{ session('status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if (Route::has('password.request')) Forgot password? @endif
@if (Route::has('register'))

Don't have an account? Register

@endif
@endsection