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

Sponsors/Create

Sponsors @if(!empty($user)) Update @else Create @endif
{{ csrf_field() }}
@php $logoFile = !empty($company?->logoFile) && !empty($company->logoFile->file_path); $logoSrc = $logoFile ? (Str::startsWith($company->logoFile->file_path, ['http://','https://']) ? $company->logoFile->file_path : Storage::url($company->logoFile->file_path)) : ''; @endphp
{{-- Placeholder --}}
Drag & drop an image here, or
Max 2048 KB
{{-- Inline preview --}} Preview {{-- Remove button --}} {{-- Hidden input --}}
@error('logo')
{{ $message }}
@enderror
{{-- Icon --}}
@php $bannerFile = !empty($company?->bannerFile) && !empty($company->bannerFile->file_path); $bannerSrc = $bannerFile ? (Str::startsWith($company->bannerFile->file_path, ['http://','https://']) ? $company->bannerFile->file_path : Storage::url($company->bannerFile->file_path)) : ''; @endphp @error('banner')
{{ $message }}
@enderror
{{-- Company Email --}}
{{-- Company Phone --}}
{{-- Website --}}
{{-- LinkedIn --}}
{{-- Twitter --}}
{{-- Facebook --}}
{{-- Company Description --}}
Cancel
@endsection