passport reset response updated

This commit is contained in:
batuhanbas
2020-02-12 18:40:00 +03:00
parent 61150510a5
commit 1a8292c97b
2 changed files with 23 additions and 7 deletions

View File

@ -1,10 +1,12 @@
@extends('layouts.auth')
@section('title', trans('auth.forgot_password'))
@section('title', trans('auth.reset_password'))
@section('message', trans('auth.reset_password'))
@section('content')
<div role="alert" class="alert alert-success d-none" :class="(form.response.success) ? 'show' : ''" v-if="form.response.success" v-html="form.response.message"></div>
<div role="alert" class="alert alert-danger d-none" :class="(form.response.error) ? 'show' : ''" v-if="form.response.error" v-html="form.response.message"></div>
{!! Form::open([
'route' => 'forgot',
'id' => 'forgot',