@extends('layouts.auth')
@section('title', 'Sign In')
@section('content')
Welcome back
Sign in to your CashBaba account
{{-- Error Alert --}}
@if(session('error'))
{{ session('error') }}
@endif
{{-- Success Alert (after logout) --}}
@if(session('success'))
{{ session('success') }}
@endif
@endsection
@push('scripts')
@endpush