@extends('layouts.master') @section('title', 'Create') @section('content')

Edit Email

Back
{{ Form::model($email, [ 'route'=>['emails.update',$email->id],'method'=>'patch']) }}
{!! Form::label('email', 'Email') !!} {!! Form::text('email', null, ['class' => 'form-control', 'placeholder' => 'Email']) !!} @if ($errors->has('email'))

{{ $errors->first('email') }}

@endif

{!! Form::submit('Create', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection