@extends('back.layouts.layout') @section('title','Update Company Info') @section('content-header')

Update Company Info

@endsection @section('content')
@csrf @method('post')
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('address')){{ $errors->first('address') }}@endif
@if ($errors->has('email1')){{ $errors->first('email1') }}@endif
@if ($errors->has('email2')){{ $errors->first('email2') }}@endif
@if ($errors->has('phone1')){{ $errors->first('phone1') }}@endif
@if ($errors->has('phone2')){{ $errors->first('phone2') }}@endif
@if ($errors->has('gmap_link')){{ $errors->first('gmap_link') }}@endif
@if ($errors->has('gmap_code')){{ $errors->first('gmap_code') }}@endif
@if ($errors->has('website')){{ $errors->first('website') }}@endif
@if ($errors->has('contact_email_recipient')){{ $errors->first('contact_email_recipient') }}@endif
@if ($errors->has('system_email_sender')){{ $errors->first('system_email_sender') }}@endif
@if ($errors->has('logo')){{ $errors->first('logo') }}@endif
@if ($errors->has('favicon')){{ $errors->first('favicon') }}@endif
@if ($errors->has('contact_text')){{ $errors->first('contact_text') }}@endif
@endsection