X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/3286f29a61833327b5701b28db626d0a480b07f9..refs/pull/3918/head:/resources/views/auth/user-unconfirmed.blade.php diff --git a/resources/views/auth/user-unconfirmed.blade.php b/resources/views/auth/user-unconfirmed.blade.php index 536397eaf..2f780b8a3 100644 --- a/resources/views/auth/user-unconfirmed.blade.php +++ b/resources/views/auth/user-unconfirmed.blade.php @@ -1,4 +1,4 @@ -@extends('simple-layout') +@extends('layouts.simple') @section('content') @@ -13,18 +13,18 @@ {{ trans('auth.email_not_confirmed_resend') }}

-
+ {!! csrf_field() !!}
- @if(auth()->check()) - @include('form/text', ['name' => 'email', 'model' => auth()->user()]) + @if($user) + @include('form.text', ['name' => 'email', 'model' => $user]) @else - @include('form/text', ['name' => 'email']) + @include('form.text', ['name' => 'email']) @endif
- +