@extends('layouts.master') @section('title') Stripe Account Setting @endsection @section('css') @endsection @section('content') @component('common-components.breadcrumb') @slot('title')@endslot @endcomponent @if (Session::get('error'))
{{ Session::get('error') }}
@endif @if (Session::get('success'))
{{ Session::get('success') }}
@endif

Stripe Account Setting

@csrf
@if (isset($stripe))
@if($errors->has('Publishable_key'))
{{ $errors->first('Publishable_key') }}
@endif
@else
@if($errors->has('Publishable_key'))
{{ $errors->first('Publishable_key') }}
@endif
@endif
@if (isset($stripe))
@if($errors->has('Secret_key'))
{{ $errors->first('Secret_key') }}
@endif
@else
@if($errors->has('Secret_key'))
{{ $errors->first('Secret_key') }}
@endif
@endif
@endsection @section('script') @endsection