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

Edit 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 Logo

Add Company Logo

@endsection @section('js') @endsection