@extends('layouts.app') @section('content')
@csrf
Contact Person Information
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
@if ($errors->has('designation'))
{{ $errors->first('designation') }}
@endif
@if ($errors->has('telephone_number'))
{{ $errors->first('telephone_number') }}
@endif
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Client Status
is_active ?? '') == 1) checked="checked" @endif value="1">
Contact Person Information
@if ($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif
@if ($errors->has('tin'))
{{ $errors->first('tin') }}
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('company_telephone_number'))
{{ $errors->first('company_telephone_number') }}
@endif
@if ($errors->has('company_mobile_number'))
{{ $errors->first('company_mobile_number') }}
@endif
@if ($errors->has('company_email'))
{{ $errors->first('company_email') }}
@endif
@section('script') @endsection @endsection