@extends('layouts.main', ['welcome' => true]) @section('content')

mail @if ($account->email) Change your email @else Set your email @endif

{!! Form::open(['route' => 'account.email.request_change']) !!}
@if ($account->email)

Please enter the new email address that you would like to link to your account.

@else

The verification code is invalid.

Please enter again your email address to receive a new code.

@endif
{!! Form::email('email', null, ['placeholder' => 'email@server.tld', 'required']) !!} {!! Form::label('email', 'Email') !!} @include('parts.errors', ['name' => 'email'])
@include('parts.captcha')
{!! Form::submit('Verify', ['class' => 'btn oppose']) !!}
{!! Form::close() !!}
@endsection @section('footer') Hop @endsection