{{ Form::label('mail_from_address', __('Mail From Address'), ['class' => 'form-label']) }}
{{ Form::text('mail_from_address', env('MAIL_FROM_ADDRESS'), ['class' => 'form-control', 'placeholder' => __('Enter Mail From Address')]) }}
@error('mail_from_address')
{{ $message }}
@enderror
{{ Form::label('mail_from_name', __('Mail From Name'), ['class' => 'form-label']) }}
{{ Form::text('mail_from_name', env('MAIL_FROM_NAME'), ['class' => 'form-control', 'placeholder' => __('Enter Mail From Name')]) }}
@error('mail_from_name')
{{ $message }}
@enderror
{{ Form::close() }}
--}}
{{ __('Email Settings') }}
{{ __('Payment Settings') }}
{{ __('These details will be used to collect subscription plan payments.Each subscription plan will have a payment button based on the below configuration.') }}