@extends('auth.layouts.auth-template') @section('title', 'Login') @section('content') @include('auth.left-banner') Login Into Your Account @if ($errors->has('errors')) {{ $errors->first('errors') }} @endif @if (Session::has('message')) {{ Session::get('message') }} @endif @csrf Email* @error('username') {{ $message }} @enderror Password* @error('password') {{ $message }} @enderror Remember me Forgot Password? @if (session('error')) {{ session('error') }} @endif Log In @endsection @section('script') @endsection