@extends('layouts.app') @section('title', 'Add User') @section('page-title', 'Add New User') @section('sidebar') @include('partials.admin-sidebar') @endsection @section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
@endsection