@extends('layouts.app') @section('content')

CHANGE PASSWORD

@if ($msg = Session::get('success'))
{{ $msg }}
@endif @if ($msg = Session::get('current_password'))
{{ $msg }}
@endif
@csrf
@if ($errors->has('oldPassword')) {{ $errors->first('oldPassword') }} @endif
@if ($errors->has('newPassword')) {{ $errors->first('newPassword') }} @endif
@if ($errors->has('confirmPassword')) {{ $errors->first('confirmPassword') }} @endif

@endsection @section('scripts') @endsection