@extends('layouts/layoutMaster')
@section('title', 'Change Password')
@php
use App\Models\User;
@endphp
@section('vendor-style')
@endsection
@section('content')
Dashboard / Password
Please set a secure password.
@if ($errors->any())
{{ $errors->first() }}
@endif
@if (session('success'))
{!! session('success') !!}
@endif
@section('vendor-script')
@endsection
@endsection