@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']) !!}
@endsection
@push('scripts')
@endpush