@extends('admin.layouts.master') @section('title', 'Add Company') @section('content')

{{ __('Add New Company') }}

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('short_name'))

{{ $errors->first('short_name') }}

@endif
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if ($errors->has('contact_no'))

{{ $errors->first('contact_no') }}

@endif
@if ($errors->has('reg_no'))

{{ $errors->first('reg_no') }}

@endif
@if ($errors->has('website'))

{{ $errors->first('website') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@if ($errors->has('address'))

{{ $errors->first('address') }}

@endif
@if ($errors->has('other_info'))

{{ $errors->first('other_info') }}

@endif

Preview Logo @if ($errors->has('logo'))

{{ $errors->first('logo') }}

@endif
@endsection