@extends('customer.layout.main') @section('css') @endsection @section('content')

Change Password

@csrf
@if ($errors->has('current_password'))
{{ $errors->first('current_password') }}
@endif @if(Session::get('error_current_password') && Session::get('error_current_password') != null)
{{ Session::get('error_current_password') }}
@php Session::put('error_current_password', null) @endphp @endif
@if ($errors->has('new_password'))
{{ $errors->first('new_password') }}
@endif @if(Session::get('error_not_match') && Session::get('error_not_match') != null)
{{ Session::get('error_not_match') }}
@php Session::put('error_not_match', null) @endphp @endif
@if ($errors->has('new_password_confirmation'))
{{ $errors->first('new_password_confirmation') }}
@endif
@endsection @section('js') @endsection