@extends('adminlte::page') @section('title', 'Modificar Datos de Usuario') @section('content_header')

Modificar Datos de Usuario

@stop @section('content')
Datos Generales @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
Nombres
person->names)}}">
Apellido Paterno
person->last_name}}">
Apellido Materno
person->mother_last_name}}">
Carnet de Identidad
person->identity_document}}">
Teléfono
person->phone}}">
Celular
person->cellphone}}">
Sobre Nombre
name}}" required>
Correo electrónico
email}}" required>
Contraseña
Confirmar Contraseña
Código
code}}">
Estado
Rol
Foto
@if (!is_null($user->profile_photo_path) && !empty($user->profile_photo_path)) @endif
@stop @section('css') @stop @section('js') @stop