@extends('super_admins.layouts.master') @section('title') Add FAQS @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif FAQ Home FAQs Add FAQ @csrf Multi Language @foreach ($active_languages as $key => $language) {{ $language->name }} @endforeach @foreach ($active_languages as $key => $language) Question ({{$language->code}}) @if ($errors->has('name.'.$language->code)) {{ $errors->first('name.'.$language->code) }} @endif Answer ({{$language->code}}) @if ($errors->has('description.'.$language->code)) {{ $errors->first('description.'.$language->code) }} @endif @endforeach @if (isset($faq_categories)) Select FAQ Category : @if (count($faq_categories) > 0) Select FAQ Category @foreach ($faq_categories as $faq_category) id ? 'selected' : '' }}> {{ $faq_category->name }} @endforeach @else No FAQ Category Exists @endif @if ($errors->has('faq_category_id')) {{ $errors->first('faq_category_id') }} @endif @endif Choose Picture @if ($errors->has('image')) {{ $errors->first('image') }} @endif Status Select Category To Be Active Or Not {{-- @if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif --}} Submit @include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection