@extends('layouts.contentLayoutMaster') @section('title') Create a Section @endsection @section('content') @include('elements.messages-error') {!! Form::open(['route' => ['quote-section-store'], '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