@extends('user.layouts.index', ['header' => true, 'nav' => true, 'demo' => true, 'settings' => $settings]) @php use Illuminate\Support\Facades\DB; // Get config $config = DB::table('config')->get(); @endphp @section('css') @endsection @section('content')
{{-- Failed --}} @if(Session::has("failed")) @endif {{-- Success --}} @if(Session::has("success")) @endif

{{ __('Update Business Card') }}

{{-- Nav links --}} @include('user.pages.edit-cards.includes.nav-link', ['link' => 'payments'])
@csrf

{{ __('Payment Links') }}

{{-- Dynamic fields --}} @for ($i = 0; $i < count($payments); $i++)
{{-- Textarea --}} {{-- File input --}} type == 'image' ? '' : 'style=display:none;' }} /> {{-- Notes: How to Break word --}} {{ __('If you need to break the word, use a . (dot) as a separator of every sentence.') }}
@endfor {{-- Add new payments --}}
{{-- Add button --}}
{{-- Footer --}} @include('user.includes.footer')
{{-- Custom JS --}} @push('custom-js') @endpush @endsection