@extends('layouts.master')
@section('content')
Upload Emails
@if (session('status'))
{{ session('status') }}
@endif
@if ( $errors->count() > 0 )
The following errors have occurred:
@foreach( $errors->all() as $message )
- {{ $message }}
@endforeach
@endif
{{ Form::Open( [ 'route' => 'import', 'method'=>'post','files'=>true])}}
{{ Form::label('file','Upload File :')}}
{{ Form::file('file',['class' => 'btn btn-default btn-file'])}}
{{ Form::submit('Submit',['class' => 'btn btn-primary']) }}
{{ Form::close()}}
@endsection()