@extends('layouts.app', ['activePage' => 'user-management', 'titlePage' => __('User Management')]) @section('content')
@csrf @method('put')
{{ __('Edit User') }}
{{ __('Back to list') }}
{{ __('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') }}
@endsection