@extends('layouts.auth_app') @section('title') Admin Login @endsection @section('content')

Admin Login

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