@extends('layouts.admin') @section('title') Admin | Exhibitor @endsection @section('content')

Exhibitor / Create

Create Exhibitor
@csrf {{-- Row for Content Icon & Quick Link Icon --}}
{{-- Content Icon --}}
@php $contentIconFile = !empty($company?->contentIconFile) && !empty($company->contentIconFile->file_path); $contentIconSrc = $contentIconFile ? (Str::startsWith($company->contentIconFile->file_path, ['http://','https://']) ? $company->contentIconFile->file_path : Storage::url($company->contentIconFile->file_path)) : ''; @endphp
{{-- Placeholder --}}
Drag & drop an image here, or
Max 2048 KB
{{-- Inline preview --}} Preview {{-- Remove button --}} {{-- Hidden input --}}
@error('content_icon')
{{ $message }}
@enderror
{{-- Quick Link Icon --}}
@php $quickLinkFile = !empty($company?->quickLinkIconFile) && !empty($company->quickLinkIconFile->file_path); $quickLinkSrc = $quickLinkFile ? (Str::startsWith($company->quickLinkIconFile->file_path, ['http://','https://']) ? $company->quickLinkIconFile->file_path : Storage::url($company->quickLinkIconFile->file_path)) : ''; @endphp @error('quick_link_icon')
{{ $message }}
@enderror
{{-- Company Name --}}
{{-- Company Email --}}
{{-- Company Phone --}}
{{-- Website --}}
{{-- LinkedIn --}}
{{-- Twitter --}}
{{-- Facebook --}}
{{-- Submit --}}
Cancel
{{-- row end --}}
@endsection