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

Modules Management Create Proposal Note

@endsection @section('content') {{ Form::open(['route' => 'admin.modules.notes.store', 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post', 'id' => 'create-quote']) }}

Create quote

@include('backend.modules.includes.partials.notes-header-buttons')
{{ Form::label('Title', 'Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter title']) }}
{{ Form::label('Content', 'Content', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('content', null, ['class' => 'form-control', 'id' => 'overview', 'required' => 'required', 'placeholder' => 'Enter content']) }}
{{ Form::label('Active', 'Active', ['class' => 'col-lg-2 control-label']) }}
{{ link_to_route('admin.modules.notes.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