@extends('layouts.app', ['title' => __('User Management')]) @section('content') @include('users.partials.header', ['title' => __('Add User')])
{{ __('User Management') }}
{{ __('Back to list') }}
@csrf
{{ __('User information') }}
{{ __('Name') }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ __('Email') }}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ __('Password') }}
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{{ __('Confirm Password') }}
{{ __('Save') }}
@include('layouts.footers.auth')
@endsection