@extends ('core.layouts.app') @section ('title', trans('business.billing_settings_preference')) @section('content')
{{ Form::open(['route' => 'biller.settings.business_goals_post', 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post','files' => true, 'id' => 'create-hrm']) }}

{{ trans('business.billing_settings_preference') }}

@foreach($goals as $goal) @php $dateObj = DateTime::createFromFormat('!m', $goal['month']); $monthName = $dateObj->format('F'); // March @endphp
{{ Form::label( 'auto_debit_transaction',$monthName,['class' => 'col-12 control-label font-weight-bold primary']) }}
Sales
Products
Customers
Income
Expense

@endforeach
{{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'm-1 btn btn-info btn-md']) }}
{{ Form::close() }}
@endsection