@extends('web.layouts.main') @section('content') @include('web.components.page-header', ['heading' => trans('text.reset-password')])
@include('web.components.alert', ['with' => 'warning', 'class' => 'warning'])
@csrf
@include('web.components.inputs.input', ['label' => trans('text.create-password').'*', 'type' => 'password', 'placeholder' => trans('text.please-specify'), 'name' => 'password'])
@include('web.components.inputs.input', ['label' => trans('text.confirm-password').'*', 'type' => 'password', 'placeholder' => trans('text.please-specify'), 'name' => 'confirm_password'])
@endsection