Files
kulakpos_web/Modules/MarketingAddon/resources/views/email-settings/index.blade.php
eko54r 05fd3230b8
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 5m14s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 17s
Build, Push and Deploy / deploy-staging (push) Successful in 41s
Build, Push and Deploy / deploy-production (push) Has been skipped
update marketing
2026-05-14 11:55:22 +07:00

70 lines
4.3 KiB
PHP

@extends('layouts.business.master')
@section('title')
{{ ('Email Settings') }}
@endsection
@section('main_content')
<div class="erp-table-section">
<div class="container-fluid">
<div class="card ">
<div class="card-bodys d-print-none">
<div class="table-header p-16">
<h4>{{ __('Email Settings') }}</h4>
</div>
<div class="order-form-section p-16">
<form action="{{ route('business.email-settings.store') }}" method="post" enctype="multipart/form-data" class="ajaxform">
@csrf
<div class="add-suplier-modal-wrapper">
<div class="row">
<div class="col-lg-4 mb-2">
<label>{{ __('Mail Driver') }}:</label>
<input type="text" name="driver" class="form-control" value="{{ $email_setting->driver }}" placeholder="{{ __('smtp') }}">
<small class="text-danger">{{ __('Supported: "smtp" and "sendmail" only') }}</small>
</div>
<div class="col-lg-4 mb-2">
<label>{{ __('Host') }}:</label>
<input type="text" name="host" class="form-control" value="{{ $email_setting->host }}" placeholder="{{ __('mailtrap.io') }}">
</div>
<div class="col-lg-4 mb-2">
<label>{{ __('Port') }}:</label>
<input type="number" name="port" class="form-control" value="{{ $email_setting->port }}" placeholder="{{ __('2525') }}">
</div>
<div class="col-lg-4 mb-2">
<label>{{ __('Username') }}:</label>
<input type="text" name="username" class="form-control" value="{{ $email_setting->username }}" placeholder="{{ __('Enter username') }}">
</div>
<div class="col-lg-4 mb-2">
<label>{{ __('Password') }}:</label>
<input type="text" name="password" class="form-control" value="{{ $email_setting->password }}" placeholder="{{ __('Enter password') }}">
</div>
<div class="col-lg-4 mb-2">
<label>{{ __('Encryption') }}:</label>
<input type="text" name="encryption" class="form-control" value="{{ $email_setting->encryption }}" placeholder="{{ __('Enter encryption') }}">
</div>
<div class="col-lg-4 mb-2">
<label>{{ __('From Name') }}:</label>
<input type="text" name="from_name" class="form-control" value="{{ $email_setting->from_name }}" placeholder="{{ __('Enter from name') }}">
</div>
<div class="col-lg-4 mb-2">
<label>{{ __('From Address') }}:</label>
<input type="text" name="from_address" class="form-control" value="{{ $email_setting->from_address }}" placeholder="{{ __('Enter from address') }}">
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="text-center mt-5">
<button class="theme-btn m-2 submit-btn">{{__('Submit')}}</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection