@extends('layouts.main') @section('title') {{ __('Change Password') }} @endsection @section('content')

{{ __('Change Password') }}

{!! Form::open(['url' => route('changepassword.store'),'data-parsley-validate','id' => 'form']) !!} @csrf
@if (Auth::user()->type == 0)
{{--
--}} @endif
@error('newPassword') {{ $message }} @enderror @error('confPassword') {{ $message }} @enderror
{!! Form::close() !!}
@endsection @section('script') @endsection