@extends('super_admins.layouts.master') @section('title') Add Clinic Archives @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif Archive Home Clinic Profile Clinic Archives Add Clinic Archive @csrf Multi Language @foreach ($active_languages as $key => $language) {{ $language->name }} @endforeach @foreach ($active_languages as $key => $language) Name ({{$language->code}}) @if ($errors->has('name.'.$language->code)) {{ $errors->first('name.'.$language->code) }} @endif Description ({{$language->code}}) @if ($errors->has('description.'.$language->code)) {{ $errors->first('description.'.$language->code) }} @endif @endforeach @if (isset($archive_categories)) Select Archive Category : @if (count($archive_categories) > 0) Select Archive Category @foreach ($archive_categories as $archive_category) id ? 'selected' : '' }}> {{ $archive_category->name }} @endforeach @else No Archive Category Exists @endif @if ($errors->has('archive_category_id')) {{ $errors->first('archive_category_id') }} @endif @endif @if (isset($tags)) Select Archive Tags : @if (count($tags) > 0) Select Archive Tags @foreach ($tags as $tag) id ? 'selected' : '' }}> {{ $tag->name }} @endforeach @else No Archive Tag Exists @endif @if ($errors->has('tag_ids')) {{ $errors->first('tag_ids') }} @endif @endif Choose Picture @if ($errors->has('image')) {{ $errors->first('image') }} @endif Status Select Archive 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