@extends('layouts.admin.app') @section('content')
@if ($errors->any())
{{trans('common.whoops')}}
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

{{ trans('settings.email_setting')}}

@if ($errors->has('email_username')) {{ $errors->first('email_username') }} @endif
@if ($errors->has('email_password')) {{ $errors->first('email_password') }} @endif
@if ($errors->has('email_host')) {{ $errors->first('email_host') }} @endif
@if ($errors->has('email_port')) {{ $errors->first('email_port') }} @endif
@if ($errors->has('email_encryption')) {{ $errors->first('email_host') }} @endif
@if ($errors->has('email_from_name')) {{ $errors->first('email_from_name') }} @endif
@if ($errors->has('support_email')) {{ $errors->first('support_email') }} @endif

{{ trans('settings.sms_setting')}}


@if ($errors->has('sms_username')) {{ $errors->first('sms_username') }} @endif
@if ($errors->has('sms_password')) {{ $errors->first('sms_password') }} @endif
@if ($errors->has('sender_id')) {{ $errors->first('sender_id') }} @endif

{{ trans('settings.payment_setting')}}


{{ trans('settings.live_price_crypto_setting')}}

@endsection @section('js') @endsection