@extends('layouts.app') {{-- Customize layout sections --}} @section('subtitle', 'CONTACT PEOPLE') @section('content_header_title', 'CONTACT PEOPLE') @section('content_header_subtitle', 'NEW') {{-- Content body: main page content --}} @section('content_body') {{ html()->form('POST', route('contact-person.store'))->open() }}

NEW CONTACT PERSON

{{ html()->label('Name', 'name') }} {{ html()->text('name')->class('form-control'.($errors->has('name') ? ' is-invalid' : ''))->placeholder('Name') }} {{$errors->first('name')}}
{{ html()->form()->close() }} @stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush