@extends('layouts.backend.master') @section('content')

Edit User Control Panel Manage User

Change Password

@if (session('error'))
× {{ session('error') }}
@endif @if (session('success'))
× {{ session('success') }}
@endif @if($errors) @foreach ($errors->all() as $error)
× {{ $error }}
@endforeach @endif
{{ csrf_field() }}
Show Current Password @if ($errors->has('current-password')) {{ $errors->first('current-password') }} @endif
Show New Password @if ($errors->has('new-password')) {{ $errors->first('new-password') }} @endif
Show Confirm Password
@endsection