@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.billingAddress.title_singular') }}
@csrf
@if($errors->has('billable'))
{{ $errors->first('billable') }}
@endif {{ trans('cruds.billingAddress.fields.billable_helper') }}
@if($errors->has('billable_type'))
{{ $errors->first('billable_type') }}
@endif {{ trans('cruds.billingAddress.fields.billable_type_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.billingAddress.fields.name_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.billingAddress.fields.address_helper') }}
@if($errors->has('contact_number'))
{{ $errors->first('contact_number') }}
@endif {{ trans('cruds.billingAddress.fields.contact_number_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.billingAddress.fields.status_helper') }}
@endsection