@extends('layouts.AdminLTE.index') @section('icon_page', 'pencil') @section('title', 'Edit User Password') @section('menu_pagina')
  • Users
  • @endsection @section('content') @if ($user->id != 1)
    {{ csrf_field() }}
    @if($errors->has('password')) {{ $errors->first('password') }} @endif
    @if($errors->has('password-confirm')) {{ $errors->first('password-confirm') }} @endif

    Editing password {{ $user->name }}.

    @endif @endsection