@extends('layouts.app', ['title' => __('Gerenciar usuário')]) @section('title', 'Editar Usuário') @section('content') @include('users.partials.header', ['title' => __('Editar usuário')]) @can('editar-usuarios')

{{ __('Gerenciar usuário') }}

@csrf @method('put')
{{ __('Informações de usuário') }}
@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')
@else

- Atenção, você não tem acesso a esse conteúdo -


@endcan @endsection