@php /* @var $user \App\Core\Entities\User */ @endphp @extends('admin.layouts.app') @section('content') @include('admin.layouts.headers.page')

Notificações

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())

Foram encontrados os seguintes erros no formulário:

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@include('admin.layouts.footers.auth')
@endsection