@extends('layouts.layout-2') @section('content')
{{$user->email}} | {{__('Change E-Mail')}}

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

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