@extends('layouts.app') @section('content')
@if (\Session::has('success'))

{{ \Session::get('success') }}

@endif @if (count($errors) > 0)
Opps! Something went wrong, please check below errors.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Change Password
@csrf
Old Password:
New Password:
Confirm Password:

@endsection