@extends('company.layouts.app') @section('title', 'Agent Dashboard') @section('content')
@if(!empty($agent->about))

About the Agent

{!! $agent->about !!}

@endif @if(!empty($agent->phone) || !empty($agent->email) || !empty($agent->website) || !empty($agent->address))

Contact Information

@if(!empty($agent->phone))
Phone:
{{ $agent->phone }}
@endif @if(!empty($agent->email))
Email:
{{ $agent->email }}
@endif @if(!empty($agent->website))
Website:
{{ $agent->website }}
@endif @if(!empty($agent->address))
Address:
{{ $agent->address }}, {{ $agent->address2 }}, {{ $agent->city }}, {{ $agent->state }}, {{ $agent->county }} {{ $agent->zip }}
@endif
@endif @if(!empty($agent->status) || !empty($agent->created_at) || !empty($agent->updated_at))

Additional Information

@if(!empty($agent->status))
Status:
{{ ucfirst($agent->status) }}
@endif @if(!empty($agent->created_at))
Created At:
{{ \Carbon\Carbon::parse($agent->created_at)->format('F j, Y, g:i a') }}
@endif @if(!empty($agent->updated_at))
Updated At:
{{ \Carbon\Carbon::parse($agent->updated_at)->format('F j, Y, g:i a') }}
@endif
@endif
Add Photos to Gallery
@if (session('success')) @endif @if (session('error')) @endif
@csrf
Drag and drop files here or click to upload
My Photos Gallery
{{-- @foreach ($images as $image)
Delete
@endforeach --}}
{{--
Showing {{ $images->firstItem() }} to {{ $images->lastItem() }} of {{ $images->total() }} results
{{ $images->links('vendor.pagination.bootstrap-4') }}
--}}
Edit
@endsection