@extends('layouts.app') @section('title', 'Profile') @section('page-wrapper')
@include('profile.general-setting-items')
@csrf @method('put')

Change Password

@if (session('status')) @endif
@if ($errors->updatePassword->has('current_password'))
{{ $errors->updatePassword->first('current_password') }}
@endif
@error('password', 'updatePassword')
{{ $message }}
@enderror
@if ($errors->updatePassword->has('password_confirmation'))
{{ $errors->updatePassword->first('password_confirmation') }}
@endif
@endsection @section('scripts') @endsection