@extends('layouts.auth') @section('title') {{ !empty($passUser->password) ? "Change Password" :"Create Password"}} @endsection @section('content')
{{ __('words.Home') }} >> {{ !empty($passUser->password) ? "Change Password" :"Create Password"}}

{{ !empty($passUser->password) ? "Change Password" :"Create Password"}}

@csrf
@if ($passUser->registeration_type == 0 || !empty($passUser->password))
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@endif

{{ __('words.Use minimum 6 characters, and at least one letter, one special character and number') }}

@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('confirm_password')) {{ $errors->first('confirm_password') }} @endif
@push('page_script') @endpush @endsection