@extends('layouts.app')
{{-- Customize layout sections --}}
@section('subtitle', 'CONTACT PEOPLE')
@section('content_header_title', 'CONTACT PEOPLE')
@section('content_header_subtitle', 'UPDATE')
{{-- Content body: main page content --}}
@section('content_body')
{{ html()->form('POST', route('contact-person.update', encrypt($contact_person->id)))->open() }}
{{ html()->label('Name', 'name') }}
{{ html()->text('name', $contact_person->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