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

Proposal Notes Management Proposal Notes Edit

@endsection @section('content') {{ Form::model($note, ['route' => ['admin.modules.notes.update', $note], 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH', 'id' => 'edit-partner']) }}

Proposal Notes edit

@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.update'), ['class' => 'btn btn-success btn-xs']) }}
{{ Form::close() }} @endsection @section('after-scripts') @endsection