@extends('layouts.app1') @section('title', 'Login') @section('content')
@if ($errors->any()) @foreach ($errors->all() as $error)
{{$error}}
@endforeach @endif
@if(Session::has('success'))
{{Session::get('success')}}
@endif @if(Session::has('error'))
{{Session::get('error')}}
@endif @if (session('status')) @endif
Welcome to Zenith Tax System
@csrf
@error('email') {{ $message }} @enderror
@if (Route::has('login')) {{ __('Back to Login') }} @endif
@endsection