@extends('layouts.app') @section('content')

{{ $title }}

@csrf
@if($errors->has('company_name')) {{ $errors->first('company_name') }} @endif
@if($errors->has('contact_person_name')) {{ $errors->first('contact_person_name') }} @endif
@if($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if($errors->has('email')) {{ $errors->first('email') }} @endif
@if($errors->has('designation')) {{ $errors->first('designation') }} @endif
{{--Copy Address--}}
@if($errors->has('address')) {{ $errors->first('address') }} @endif
@if($errors->has('country')) {{ $errors->first('country') }} @endif
@endsection