@extends('user.layout') @section('content')
{{ __('Update_Password') }}
{{ csrf_field() }}
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @else @if ($errors->first('oldPassMatch')) {{ __('Old_password_does_not_match_with_the_existing_password') }} @endif @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection