@extends('layouts.admin')
@section('content')
@include('admin.partials.ckeditor.ckeditor')
{!! Form::label('start_date', 'Start Date') !!}
{!! Form::text('start_date', date('Y-m-d', strtotime('first day of last month')), ['class' => 'form-control', 'id' => 'start_date']) !!}
{!! Form::label('end_date', 'End date') !!}
{!! Form::text('end_date', date('Y-m-d', strtotime('last day of last month')), ['class' => 'form-control', 'id' => 'end_date']) !!}
{!! Form::label('company', 'Company') !!}
{!! Form::text('company', '', ['class' => 'form-control', 'id' => 'company']) !!}
{!! Form::submit('Create Reports', ['class' => 'btn btn-primary form-control', 'id' => 'create_reports']) !!}
{!! Form::label('email_title', 'Email title') !!}
{!! Form::text('email_title', 'Maritime-Executive Campaign Stats Report', ['class' => 'form-control', 'id' => 'email_title']) !!}
{!! Form::label('email_body', 'Email body') !!}
{!! Form::textarea('email_body', '',['class' => 'form-control', 'id' => 'email_body','size' => '30x5']) !!}
{!! Form::label('email', 'Send to Email (Please use comma (,) for multiple emails.)') !!}
{!! Form::text('email', '', ['class' => 'form-control', 'id' => 'email']) !!}
{!! Form::submit('Send Reports', ['class' => 'btn btn-primary form-control', 'id' => 'send_reports']) !!}
@endsection
@push('scripts')
@endpush