@extends('layouts.app') @section('content')
@if (session('success') || session('status') === 'settings-updated') @endif @if (session('error')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ __('Settings') }}

{{ __('Setup your project') }}

@csrf
@if ($errors->has('app_name')) {{ $errors->first('app_name') }} @endif
@if ($errors->has('app_currency')) {{ $errors->first('app_currency') }} @endif
@if ($errors->has('app_callback_url')) {{ $errors->first('app_callback_url') }} @endif
@if (!empty($settings['logo'])) App Logo @endif
@if ($errors->has('logo')) {{ $errors->first('logo') }} @endif
@endsection @section('script') @endsection