@extends('layouts.auth') @section('title', 'Login - AutoPOS') @section('content')

Login

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

Forgot your password?

@endif

Don't have an account? Register

Welcome Back

Login to manage your sales and inventory efficiently.

@endsection