@include('links.header') Change Password
@if (session('error'))
    @foreach (session('error') as $error)
  • {{ $error[0] }}
  • @endforeach
@endif @if (session('success'))
    @foreach (session('success') as $success)
  • {{ $success[0] }}
  • @endforeach
@endif
{{ csrf_field() }}
@if ($errors->has('current-password')) {{ $errors->first('current-password') }} @endif
@if ($errors->has('new-password')) {{ $errors->first('new-password') }} @endif
@include('links.footer')