@extends('network.layouts.app') @section('title', 'Agent Dashboard') @section('content')
Edit
Agent Logo

{{ $agent->full_name }}

Contact Information

    @if(!empty($agent->phone))
  • {{ $agent->phone }}
  • @endif @if(!empty($agent->email))
  • {{ $agent->email }}
  • @endif @if(!empty($agent->website))
  • {{ $agent->website }}
  • @endif @if(!empty($agent->address))
  • {{ $agent->address }}, {{ $agent->city }}, {{ $agent->state }} {{ $agent->zip }}
  • @endif
@if(!empty($agent->about))

About the Agent

{!! $agent->about !!}

@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') }}
@endsection