blessing-skin-server/resources/views/skinlib/upload.blade.php

30 lines
956 B
PHP
Raw Normal View History

2016-07-21 22:01:57 +08:00
@extends('skinlib.master')
2016-09-18 13:30:58 +08:00
@section('title', trans('skinlib.upload.title'))
2016-07-21 22:01:57 +08:00
@section('content')
<!-- Full Width Column -->
<div class="content-wrapper">
<div class="container">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
2018-07-17 11:06:55 +08:00
@lang('skinlib.upload.title')
2016-07-21 22:01:57 +08:00
</h1>
</section>
<!-- Main content -->
2018-08-15 16:44:21 +08:00
<section class="content"></section><!-- /.content -->
2016-07-21 22:01:57 +08:00
</div><!-- /.container -->
</div><!-- /.content-wrapper -->
<script>
2018-09-09 09:28:05 +08:00
blessing.extra = {
2018-08-15 16:44:21 +08:00
rule: "{{ option('texture_name_regexp') ? trans('skinlib.upload.name-rule-regexp', compact('regexp')) : trans('skinlib.upload.name-rule') }}",
privacyNotice: "@lang('skinlib.upload.private-score-notice', ['score' => option('private_score_per_storage')])",
scorePublic: {{ option('score_per_storage') }},
scorePrivate: {{ option('private_score_per_storage') }}
}
2016-07-21 22:01:57 +08:00
</script>
@endsection