@extends('layouts.app') @section('form-title') {{ __('Edit billing software') }} @endsection @section('breadcrumb') @endsection @section('content')
@csrf @method('PUT')
{!! yesNoDd('bs_connected_by', old('bs_connected_by', env('BS_CONNECTED_BY_API'))) !!} @if($errors->has('bs_connected_by'))

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

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

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

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

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

@endif
{{-- Edit section ends --}}
@endsection