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

Create Company

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
Company Image *

Add Company Image

@if(old('logo')) @else @endif
@if ($errors->has('logo'))

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

@endif
@endsection @section('js') @endsection