@extends('layouts.app') @section('titlePage', 'Create New FAQ') @section('content') @push('script') @endpush
@php $title = json_decode($data->title,true); $sub_title = json_decode($data->subtitle,true); @endphp
List
@include('common.alert')
@csrf
{{--
{{ Form::label('category_id', 'Category') }} * {{ Form::select('category_id', $categories, $selectedCategoryID, ['class' => 'form-control', 'placeholder' => 'Select']) }}
--}}
@include('common.lfm', [ 'type' => 'image', 'name' => 'Image1', 'input' => 'image1', 'required' => true, 'file' => $data->image1 ?? null, ])

Maximum file size: 2MB, with dimensions of 500 pixels width and 500 pixels height.

@include('common.lfm', [ 'type' => 'image', 'name' => 'Image2', 'input' => 'image2', 'required' => true, 'file' => $data->image2 ?? null, ])

Maximum file size: 2MB, with dimensions of 500 pixels width and 500 pixels height.

@include('common.lfm', [ 'type' => 'image', 'name' => 'Image3', 'input' => 'image3', 'required' => true, 'file' => $data->image3 ?? null, ])

Maximum file size: 2MB, with dimensions of 500 pixels width and 500 pixels height.

{{-- /card-body --}}
@endsection @push('script') @endpush