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

Manage Statements - Edit Statement

{{ Form::model($statement, ['route' => ['frontend.user.statement.update', $statement], 'enctype' => "multipart/form-data", 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH']) }}
@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']) }}
@if($statement->pdf_file) Open PDF @endif
{{ link_to_route('frontend.user.statement.index', trans('buttons.general.cancel'), [], ['class' => 'button_back dash_button left']) }} {{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'main_button dash_button right']) }}
@if ($client->id == 1) {{ Form::hidden('status', 1) }} {{ Form::hidden('assignees_roles[0]', 1) }} @endif {{ Form::close() }}
@endsection @section('after-scripts') {{ Html::script('js/backend/access/users/script.js') }} @endsection