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

Create Email

Back
{{ Form::open( [ 'route'=>'emails.store','method'=>'post','files'=>true, "enctype"=>"multipart/form-data"]) }}
{!! 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