@extends('admin.layout.template') @section('content')

Sign In

Enter your email address and password to access admin panel.

@csrf {{-- Show validation errors --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if (Route::has('password.request')) Forgot your password? @endif
@endsection