@extends('layouts.app') @section('title', $title) @section('content')

{{ $conference->title }}

@if($conference->image_url) {{ $conference->title }} @else {{ $conference->title }} @endif
{{ $conference->title }}

{{ $conference->formatted_date }}

{{ $conference->time ? $conference->time->format('H:i') : '' }} - {{ $conference->end_time ? $conference->end_time->format('H:i') : '' }}

{{ $conference->location }}

{{ $conference->venue }}

{{ Str::limit($conference->short_description, 200) }}

{{ $conference->formatted_price }} @if($conference->discounted_price && $conference->discounted_price < $conference->price) {{ '$' . number_format($conference->price, 2) }} @endif
{{ __('Register for this Conference') }}
@csrf
@error('full_name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('organization')
{{ $message }}
@enderror
@error('job_title')
{{ $message }}
@enderror
@endsection