@extends ('backend.layouts.app') @section ('title', 'Create Team') @section('page-header')

Modules Management Create Proposal

@endsection @section('content') {{ Form::open(['route' => 'admin.modules.proposal.store', 'enctype' => "multipart/form-data", 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post', 'id' => 'create-partner']) }}

Create Proposal

{{ Form::label('Executive Summary Title', 'Executive Summary Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('es_title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter Executive Summary Title']) }}
{{ Form::label('Executive Summary Content', 'Executive Summary Content', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('es_content', null, ['class' => 'form-control ckeditor', 'required' => 'required', 'placeholder' => 'Enter Executive Summary Content']) }}
{{ Form::label('Executive Summary Active', 'Executive Summary Active', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('About Us Title', 'About Us Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('as_title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter About Us Title']) }}
{{ Form::label('About Us Content', 'About Us Content', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('as_content', null, ['class' => 'form-control ckeditor', 'required' => 'required', 'placeholder' => 'Enter About Us Content']) }}
{{ Form::label('About Us Active', 'About Us Active', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('Investment Philosophy Title', 'Investment Philosophy Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('ip_title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter Investment Philosophy Title']) }}
{{ Form::label('Investment Philosophy Content', 'Investment Philosophy Content', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('ip_content', null, ['class' => 'form-control ckeditor', 'required' => 'required', 'placeholder' => 'Enter Investment Philosophy Content']) }}
{{ Form::label('Investment Philosophy Active', 'Investment Philosophy Active', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('Fees Title', 'Fees Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('fee_title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter Fees Title']) }}
{{ Form::label('Fees Content', 'Fees Content', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('fee_content', null, ['class' => 'form-control ckeditor', 'required' => 'required', 'placeholder' => 'Enter Fees Content']) }}
{{ Form::label('Fees Active', 'Fees Active', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('Reporting Title', 'Reporting Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('reporting_title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter Reporting Title']) }}
{{ Form::label('Reporting Content', 'Reporting Content', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('reporting_content', null, ['class' => 'form-control ckeditor', 'required' => 'required', 'placeholder' => 'Enter Reporting Content']) }}
{{ Form::label('Reporting Active', 'Reporting Active', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('Our Investment Team Title', 'Our Investment Team Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('oit_title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter Our Investment Team Title']) }}
{{ Form::label('Our Investment Team Content', 'Our Investment Team Content', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('oit_content', null, ['class' => 'form-control ckeditor', 'required' => 'required', 'placeholder' => 'Enter Our Investment Team Content']) }}
{{ Form::label('Our Investment Team Active', 'Our Investment Team Active', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('Why Invest with StrategIQ Title', 'Why Invest with StrategIQ Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('wiws_title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter Why Invest with StrategIQ Title']) }}
{{ Form::label('Why Invest with StrategIQ Content', 'Why Invest with StrategIQ Content', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('wiws_content', null, ['class' => 'form-control ckeditor', 'required' => 'required', 'placeholder' => 'Enter Why Invest with StrategIQ Content']) }}
{{ Form::label('Why Invest with StrategIQ Active', 'Why Invest with StrategIQ Active', ['class' => 'col-lg-2 control-label']) }}
{{ link_to_route('admin.modules.proposal.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-xs']) }}
{{ Form::submit(trans('buttons.general.crud.create'), ['class' => 'btn btn-success btn-xs']) }}
{{ Form::close() }} @endsection @section('after-scripts') @endsection