@extends('back.layouts.layout') @section('title','Update Company Info') @section('content-header') Update Company Info Dashboard Settings Update Company Info @endsection @section('content') @csrf @method('post') Company Name * @if ($errors->has('name')){{ $errors->first('name') }}@endif Address * @if ($errors->has('address')){{ $errors->first('address') }}@endif Email 1 * @if ($errors->has('email1')){{ $errors->first('email1') }}@endif Email 2 * @if ($errors->has('email2')){{ $errors->first('email2') }}@endif Phone 1 * @if ($errors->has('phone1')){{ $errors->first('phone1') }}@endif Phone 2 * @if ($errors->has('phone2')){{ $errors->first('phone2') }}@endif GMap Link @if ($errors->has('gmap_link')){{ $errors->first('gmap_link') }}@endif GMap Code @if ($errors->has('gmap_code')){{ $errors->first('gmap_code') }}@endif Website @if ($errors->has('website')){{ $errors->first('website') }}@endif Contact Email Recipient * @if ($errors->has('contact_email_recipient')){{ $errors->first('contact_email_recipient') }}@endif System Email Sender * @if ($errors->has('system_email_sender')){{ $errors->first('system_email_sender') }}@endif Logo @if ($errors->has('logo')){{ $errors->first('logo') }}@endif Favicon @if ($errors->has('favicon')){{ $errors->first('favicon') }}@endif Contact Text {{ (!empty(old('contact_text'))) ? old('contact_text') : $company->contact_text }} @if ($errors->has('contact_text')){{ $errors->first('contact_text') }}@endif @endsection