{{--
@csrf
@if (Route::has('password.request')) {{ __('Forgot your password?') }} @endif {{ __('Log in') }}
--}} @extends('layouts.auth') @section('content')
Welcome Back !

Sign in to continue to {{ config('app.name') }}.

@csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('error'))
  • {{ session('error') }}
@endif
{{--
--}}
@endsection --}}