@extends('layouts.index') @section('title', 'Ganti Password') @section('content_header')

Ganti Password

@stop @section('content') @include('partials.flash_message') @include('partials.breadcrumbs')
@csrf
@if ($errors->has('password_old')) {{ $errors->first('password_old') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection