@extends('admin.layout') @section('content')

{{ translate('Pages') }}

@foreach ($data as $key => $d) @endforeach
# {{ translate('Title') }} {{ translate('Show mobile') }} {{ translate('Options') }}
{{ $key + 1 + ($data->currentPage() - 1) * $data->perPage() }} {{ $d->getTranslation('title') }}
{{ $data->links() }}

{{ translate('Add page') }}

{!! Form::open(['method' => 'post', 'action' => 'Admin\PagesController@store', 'files' => true]) !!}
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => translate('Title')]) !!}
@error('title')
{{ $message }}
@enderror
{!! Form::textarea('description', null, ['id' => 'editor1', 'class' => 'form-control', 'placeholder' => translate('Description')]) !!}
@error('description')
{{ $message }}
@enderror
{!! Form::checkbox('show_mobile', null, 1, ['id' => 'Checkbox_1']) !!}
{!! Form::Close() !!}
@endsection @section('script') @endsection