Skip to content

Commit

Permalink
🐛 fix verify-email.blade.php
Browse files Browse the repository at this point in the history
There was an error in the @extends directive. This is now fixed. The layout has also been optimized for computers and tablets.
  • Loading branch information
roelreijneveld committed Nov 22, 2020
1 parent 565a041 commit c25a37e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stubs/resources/views/auth/verify-email.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extends('layouts.app')
@extends('layouts.auth')

@section('content')
@if (session('status') == 'verification-link-sent')
Expand All @@ -10,7 +10,7 @@
<div class="card card-md">
<div class="card-body">
<h2 class="text-center">{{ __('auth.emailverification') }}</h2>
<p class="text-center mx-md-5 mx-2">
<p class="text-center mx-2">
{{ __('auth.emailverificationtext') }}
</p>
<form method="POST" action="{{ route('verification.send') }}">
Expand Down

0 comments on commit c25a37e

Please sign in to comment.