@extends('layouts.admin.home') @section('title') Admins @endsection @section('css') @endsection @section('content')
{{-- --}}
{{auth()->guard('admin')->user()->name}}

@include('flash::message') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif
@csrf
@csrf
@endsection @section('script') @endsection