@extends('layouts.app', ['title' => __('User Management')]) @section('content') @include('users.partials.header', ['title' => __('Add User')])

{{ __('User Management') }}

@csrf
{{ __('User information') }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@include('layouts.footers.auth')
@endsection