@extends('auth.layouts.app') @section('title', __('auth.reset_password.main_title')) @section('content')
{{ __('auth.reset_password.main_title') }}

{{ __('auth.reset_password.title') }}

@csrf @php if (!isset($token)) { $token = \Request::route('token'); } @endphp
@php($lbl_email = __('system.fields.email'))
@error('email')
{{ $message }}
@enderror
@php($lbl_password = __('system.fields.password'))
@error('password')
{{ $message }}
@enderror
@php($lbl_c_password = __('system.fields.password_confirmation'))
@error('password_confirmation')
{{ $message }}
@enderror
@endsection