@extends('frontend.layouts.app-advisor') @section('content')

Manage Statements - Add Statement

{{ Form::open(['route' => 'frontend.user.statement.store', 'enctype' => "multipart/form-data", 'class' => 'form-horizontal', 'id' => 'client_form', 'role' => 'form', 'method' => 'post']) }}
@if ($errors->any())
@foreach ($errors->all() as $error) {!! $error !!}
@endforeach
@endif
{{ Form::label('Select Type', 'Select Monthly or Quarterly', ['class' => 'col-lg-12']) }}
@if($clients->count())
{{ Form::label('Select Client', 'Select Client', ['class' => 'col-lg-12']) }}
@endif
{{ Form::label('state_date', 'Date', ['class' => 'col-lg-12']) }}
{{ Form::text('state_date', null, ['class' => 'dash_input', 'maxlength' => '191', 'id' => "datepicker", 'placeholder' => 'Enter Date']) }}
{{ Form::label('pdf_file', 'Choose PDF', ['class' => 'col-lg-12']) }}
{{ link_to_route('frontend.user.statement.index', trans('buttons.general.cancel'), [], ['class' => 'button_back dash_button left']) }} {{ Form::submit(trans('buttons.general.crud.create'), ['class' => 'main_button dash_button right']) }}
{{ Form::close() }}
@endsection @section('after-scripts') {{ Html::script('js/backend/access/users/script.js') }} @endsection