@extends('layouts.nifty') @section('content') Change Password Complete the form below to Change your Password @csrf @method('PATCH') @if(session('message')) {{ session('message') }} @endif @if($errors->count() > 0) @foreach($errors->all() as $error) {{ $error }} @endforeach @endif @yield('content') Current Password * @if($errors->has('current_password')) {{ $errors->first('current_password') }} @endif New Password * @if($errors->has('new_password')) {{ $errors->first('new_password') }} @endif New Password Confirmation * @if($errors->has('new_password_confirmation')) {{ $errors->first('new_password_confirmation') }} @endif @include('partials.footer') @endsection
Complete the form below to Change your Password