@extends('app.layout') @section('sub_content')
@if (session('error')) @endif
@include('app.account.nav')
@method('PATCH') @csrf
{{ __('Current Password') }}
@if ($errors->has('current_password')) {{ $errors->first('current_password') }} @endif
{{ __('New Password') }}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{ __('Confirm New Password') }}
@endsection