@extends('layouts.master') @section('contain')

Change Password

{{--
Basic Information
--}}
@csrf @method('PUT')
{{-- --}}
@if($errors->all('old_password'))

{{ $errors->first('old_password') }}

@endif
{{-- --}}
@if($errors->all('new_password'))

{!! $errors->first('new_password') !!}

@endif
{{-- --}}
@if($errors->all('new_password_confirmation'))

{{$errors->first('new_password_confirmation') }}

@endif
@endsection