@extends('layouts.admin') @section('content')
{{__('labels.setting.change')}}
@if (session('error')) @endif @if (session('success')) @endif
@csrf
@if ($errors->has('current-password'))
{{ $errors->first('current-password') }}
@endif
@if ($errors->has('new-password'))
{{ $errors->first('new-password') }}
@endif
@if ($errors->has('new-password_confirmation'))
{{ $errors->first('new-password_confirmation') }}
@endif
@endsection