@extends('dashboard.base') @section('content')
{{ __('Profile') }}
VotingApp
{{ __('Change Password') }}
@if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif
@csrf
@if ($errors->has('oldpassword')) {{$errors->first('oldpassword') }} @endif
@if ($errors->has('newpassword')) {{ $errors->first('newpassword') }} @endif
@endsection