@row([
'type' => 'textinput',
'has_language' => true,
'field' => 'title',
'options' => [
'required' => true
]
])
@row([
'type' => 'image-upload',
'field' => 'video',
'options' => [
'is_video' => true,
]
])
@row([
'type' => 'textinput',
'field' => 'founded',
'options' => [
'input_type' => 'number',
]
])
@row([
'type' => 'textinput',
'field' => 'projects_delivered',
'options' => [
'input_type' => 'number',
]
])
@row([
'type' => 'textinput',
'field' => 'cities_served',
'options' => [
'input_type' => 'number',
]
])
@repeater([
'field' => 'about_us_sliders',
'sub_fields' =>
[
[
'type' => 'image-upload',
'field' => 'image',
'options' => [
'width' => '20%'
]
],
[
'type' => 'textinput',
'field' => 'title',
'has_language' => true,
'options' => [
'width' => '30%'
]
],
[
'type' => 'textarea',
'field' => 'description',
'has_language' => true,
'options' => [
'width' => '50%'
]
],
]
])
@include('admin.base.footer')
@include('admin.base.seo')