@extends('backend.layouts.app') @section('title', $data['p_heading']) @section('content')
Business Name | Address | city | State | zip | Phone | fax | Name | |
---|---|---|---|---|---|---|---|---|
{{ $record->business_name }} | {{ $record->address }} | {{ $record->city }} | {{ $record->state }} | {{ $record->zip }} | {{ $record->phone }} | {{ $record->fax }} | {{ $record->email }} | {{ $record->first_name . ' ' . $record->last_name }} |
{!! Form::open(array('route' => ['admin.crm-data.update', $record->id], 'method' => 'POST', 'id' => 'frm_crm_data_'.$record->id)) !!}
@method('PATCH')
@csrf
|