@extends('layouts.site') @section('content')

Enter Email to Update Subscription

{!! Form::open(['action' => 'SubscribersController@update_subscriber_email']) !!} @if (!$errors->isEmpty())
×

{{ $errors->first() }}

@endif
{!! Form::text('email', NULL, ['class' => 'form-control']) !!}
{!! Form::submit('Send Email', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@endsection