@extends('layouts.app') @section('content')
{{ trans('auth.change_password') }}
@if (session('success') or session('error'))
{{ session('success') ?: session('error')}}
@endif
{{ csrf_field() }}
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('new_password')) {{ $errors->first('new_password') }} @endif
@if ($errors->has('new_password_confirmation')) {{ $errors->first('new_password_confirmation') }} @endif
{{ trans('auth.back') }}
@endsection