@extends('layouts.contentLayoutMaster') @section('title') Edit Quote Section: {{$section->name}} @endsection @section('content') @include('elements.messages-error') {!! Form::model($section, ['route' => ['quote-section-update', $section->id], 'method' => 'post', 'class' => 'form form-vertical', 'novalidate']) !!} @csrf

Section Details

{!! Form::label('name', 'Name *') !!}
{!! Form::text('name', old('name'), [ 'id' => 'name', 'class' => 'form-control', ] + $validationRules['name']) !!}
{!! Form::label('content', 'Content *') !!}
Cancel
{{ Form::close() }} @endsection