@extends('master') @section('styles') @endsection @section('content')

{{ __('uum.updateuser') }} {{ __('uum.viewall') }}


@csrf @method('PATCH')
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if(Auth::user()->can('do-everything') && $user->id !== Auth::id())
@if($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@endsection @section('myscript') @endsection