@extends('layouts.master') @section('content') Contact: Edit @if ($error = Session::get('error')) {{ $error }} @endif @if ($message = Session::get('message')) {{ $message }} @endif @if (count($errors) > 0) Whoops! There were some problems with your input. @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @csrf First Name: Last Name: E-Mail 1: E-Mail 2: Title: Company: @if($companies) Choose a Company: @foreach($companies as $id => $name) company_id == $id ? 'selected' : '' }}>{{ $name }} @endforeach @endif Department: None Reports to: None Work Phone: Other Phone: Cell Phone: Address: City: State: Pincode: State: Owner: @if($users) @foreach($users as $id => $name) owner == $id ? 'selected' : '' }}>{{ $name }} @endforeach @endif Notes: {{ $contact->notes }} Is Consultant: is_consultant ==1) checked="checked" @endif value=""> @if(!empty($extraFields)) @foreach($extraFields as $field) {{ ucfirst($field['field_name']) }}: {!! $field['addHTML'] !!} @endforeach @endif @endsection
Contact: Edit
{{ $error }}
{{ $message }}