@extends('layouts.layout-2') @section('content')
{{__('Change E-Mail')}}

{{__('Change your e-mail address here. We will send you a new activation link to your new e-mail address to verify it.')}}

{!! Form::open(['url' => route('user_update_email')]) !!}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
has('email_confirmation') ? 'is-invalid' : '' }} type="email" name="email_confirmation" placeholder="{{__('Confirm new E-Mail')}}*" required> @if ($errors->has('email_confirmation')) {{ $errors->first('email_confirmation') }} @endif
{{ __('back') }}
{!! Form::close() !!}
@endsection