@php
$section_payment = \App\Models\Section::section('payment');
@endphp
@if(isset($section_payment))
{{ $section_payment->title }}
{!! $section_payment->description !!}
@endif
{{-- Success Alert --}}
@if(session('success'))
{{session('success')}}
@endif
{{-- Error Alert --}}
@if(session('error'))
{{session('error')}}
@endif