@extends('layouts.auth')
|
|
@section('title', 'Reset password')
|
|
|
|
@section('content')
|
|
<div>
|
|
@livewire('associates.auth.passwords.reset', [
|
|
'token' => $token
|
|
])
|
|
</div>
|
|
@endsection
|