@extends('admin.global-config.index') @section('global-config-content')
@csrf
{{ __('Application Name') }}
@if ($errors->has('APPLICATION_NAME'))
{{ $errors->first('APPLICATION_NAME') }}
@endif
{{ __('Primary Color') }}
@if ($errors->has('PRIMARY_COLOR'))
{{ $errors->first('PRIMARY_COLOR') }}
@endif
{{ __('Primary Logo') }}
@if ($errors->has('PRIMARY_LOGO'))
{{ $errors->first('PRIMARY_LOGO') }}
@endif
{{ __('Secondary Logo') }}
@if ($errors->has('SECONDARY_LOGO'))
{{ $errors->first('SECONDARY_LOGO') }}
@endif
{{ __('Favicon Icon') }}
@if ($errors->has('FAVICON'))
{{ $errors->first('FAVICON') }}
@endif
{{ __('Save') }}
@endsection