@extends('layouts.main') @section('title') {{ __('SEO Settings') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content')

{{ __('SEO Settings') }}

{!! Form::open(['url' => route('seo_settings.store'), 'data-parsley-validate', 'files' => true]) !!}
{{-- Pages --}}
{{ Form::label('page', __('Page'), ['class' => 'form-label text-center']) }}
{{-- Title --}}
{{ Form::label('title', __('Title'), ['class' => 'form-label text-center']) }}
0
{{-- Description --}}
{{ Form::label('description', __('Description'), ['class' => 'form-label text-center']) }}
0
{{-- Keywords --}}
{{ Form::label('keywords', __('Keywords'), ['class' => 'form-label text-center']) }}
{{-- Image --}}
{{ Form::label('image', __('Image'), ['class' => 'form-label text-center']) }} {{ Form::file('image', ['class' => 'filepond form-control', 'required' => 'true', 'accept' => 'image/*']) }}
{{-- Save --}}
{{ Form::submit(trans('Save'), ['class' => 'btn btn-primary me-1 mb-1']) }}
{!! Form::close() !!}
{{ __('ID') }} {{ __('Image') }} {{ __('Page') }} {{ __('Title') }} {{ __('Description') }} {{ __('Action') }}
@endsection @section('script') @endsection