shareit/resources/views/help.blade.php

77 lines
2.8 KiB
PHP
Raw Permalink Normal View History

2018-09-17 23:33:05 +00:00
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="row"><h1>{!! __('help.helpTitle') !!}</h1></div>
2018-09-17 23:33:05 +00:00
<div class="card">
<div class="card-header"><strong>{!! __('help.whatIsIt') !!}</strong></div>
2018-09-17 23:33:05 +00:00
<div class="card-body">
{!! __('help.siteHelpOthers') !!}
2018-09-17 23:33:05 +00:00
<p class="my-4"><ul>
{!! __('help.product_item') !!}
2018-09-17 23:33:05 +00:00
</ul></p>
<p class="my-4">
{!! __('help.examples') !!}
2018-09-17 23:33:05 +00:00
</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-center mt-4">
<div class="col-md-8">
<div class="card">
<div class="card-header"><strong>{!! __('help.step_title') !!}</strong></div>
2018-09-18 00:19:18 +00:00
<div class="card-body">
<div>
<strong>{!! __('help.step_sharing_subtitle') !!}</strong>
2018-09-18 00:19:18 +00:00
<ol>
{!! __('help.step_sharing_steps') !!}
2018-09-18 00:19:18 +00:00
</ol>
</div>
<div>
<strong>{!! __('help.step_sharedItem_subtitle') !!}</strong>
2018-09-18 00:19:18 +00:00
<ol>
{!! __('help.step_sharedItem_steps') !!}
2018-09-18 00:19:18 +00:00
</ol>
</div>
<div>
<strong>{!! __('help.step_getAlerted_subtitle') !!}</strong>
2018-09-18 00:19:18 +00:00
<ol>
{!! __('help.step_getAlerted_steps') !!}
2018-09-18 00:19:18 +00:00
</ol>
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-center mt-4">
<div class="col-md-8">
<div class="card">
<div class="card-header"><strong>{!! __('help.screens_title') !!}</strong></div>
</div>
</div>
</div>
<div class="row justify-content-center mt-4">
<div class="col-md-8">
<div class="card">
<div class="card-header"><strong>{!! __('help.home_title') !!}</strong></div>
2018-09-18 00:19:18 +00:00
<div class="card-body">
{!! __('help.home_body') !!}
2018-09-18 00:19:18 +00:00
</div>
</div>
</div>
</div>
<div class="row justify-content-center mt-4">
<div class="col-md-8">
<div class="card">
<div class="card-header"><strong>{!! __('help.products_title') !!}</strong></div>
2018-09-18 00:19:18 +00:00
<div class="card-body">
{!! __('help.products_body') !!}
2018-09-18 00:19:18 +00:00
</div>
</div>
</div>
</div>
2018-09-17 23:33:05 +00:00
</div>
@endsection