@extends('frontend.app') @section('content')
@csrf
{{-- HEADER --}}

Sign In

Access your account securely

{{-- BODY --}}
{{-- Global Errors --}} @if ($errors->any())
{{ $errors->first() }}
@endif

Welcome Back

Enter your email and password to continue.


{{-- EMAIL --}}
@error('email') {{ $message }} @enderror
{{-- PASSWORD --}}
@error('password') {{ $message }} @enderror
{{-- LOGIN BUTTON --}} {{-- REGISTER LINK --}}
New here? Create an account
@endsection