@extends('dashboard_layout') @section('content')
@if(Session::has('submit-status'))

{{ Session::get('submit-status') }}

@endif @if(Session::has('error-status'))

{{ Session::get('error-status') }}

@endif

Change Password

{{ csrf_field() }}
Old Password        
{{ $errors->first('old_pass') }}

New Password       
{{ $errors->first('new_pass') }}

Re-enter Password
{{ $errors->first('re_pass') }}

@endsection