@extends('layout.pub_layout') @section('title', 'vendor-dashboard') @section('body') @section('header', 'Change Password') @section('badge') {{-- --}} @endsection
@if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif

Password Change

{{ csrf_field() }}
@if ($errors->has('current-password'))
{{ $errors->first('current-password') }}
@endif
@if ($errors->has('new-password'))
{{ $errors->first('new-password') }}
@endif
@endsection