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

{{ translate('Service Slider') }}

{{ translate('Add Service Slider') }}
{!! Form::open(['method' => 'post', 'action' => 'Admin\ServiceSliderController@store', 'files' => true]) !!}
{!! Form::text('title_ar', null, ['class' => 'form-control', 'placeholder' => translate('Arabic title')]) !!}
@error('title_ar')
{{ $message }}
@enderror
{!! Form::text('title_en', null, ['class' => 'form-control', 'placeholder' => translate('English title')]) !!}
@error('title_en')
{{ $message }}
@enderror
{!! Form::text('sub_title_ar', null, ['class' => 'form-control', 'placeholder' => translate('Arabic sub title')]) !!}
@error('sub_title_ar')
{{ $message }}
@enderror
{!! Form::text('sub_title_en', null, ['class' => 'form-control', 'placeholder' => translate('English sub title')]) !!}
@error('sub_title_en')
{{ $message }}
@enderror
{!! Form::textarea('description_ar', null, ['class' => 'form-control', 'placeholder' => translate('Arabic Description')]) !!}
@error('description_ar')
{{ $message }}
@enderror
{!! Form::textarea('description_en', null, ['class' => 'form-control', 'placeholder' => translate('English Description')]) !!}
@error('description_en')
{{ $message }}
@enderror
{!! Form::text('link_ar', null, ['class' => 'form-control', 'placeholder' => translate('Arabic Link')]) !!}
@error('link_ar')
{{ $message }}
@enderror
{!! Form::text('link_en', null, ['class' => 'form-control', 'placeholder' => translate('English Link')]) !!}
@error('link_en')
{{ $message }}
@enderror

{!! Form::checkbox('link_external', null, 1, ['id' => 'link_external']) !!}
{!! Form::number('arrangment', 0, ['class' => 'form-control', 'placeholder' => translate('Arrangement')]) !!}
@error('arrangment')
{{ $message }}
@enderror
{!! Form::text('btn_text_ar', null, ['class' => 'form-control', 'placeholder' => translate('Arabic Button text')]) !!}
@error('btn_text_ar')
{{ $message }}
@enderror
{!! Form::text('btn_text_en', null, ['class' => 'form-control', 'placeholder' => translate('English Button text')]) !!}
@error('btn_text_en')
{{ $message }}
@enderror
{!! Form::checkbox('active', null, 1, ['id' => 'active']) !!}
{!! Form::Close() !!}
@endsection @section('script') @endsection