@extends('layouts.layout-2') @section('content')
{{__('Change Password')}}
{!! Form::open(['action' => route('user_update_password')]) !!}
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
has('password_confirmation') ? 'is-invalid' : '' }} type="password" name="password_confirmation" placeholder="{{__('Confirm new Password')}}*" required> @if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
{{ __('back') }}
{!! Form::close() !!}
@endsection