@extends ('backend.layouts.app') @section ('title', trans('Agent Details')) @section('page-header')

{{ trans('Agent Details') }} {{ trans('') }}

@endsection @section('content')

{{ trans('Details') }}

{{ trans('First Name') }} {{ trans('Last Name') }} {{ trans('Phone') }} {{ trans('Mobile') }} {{ trans('Email') }} {{ trans('Agency') }} {{ trans('Country') }} {{ trans('City') }}
{{ $agent->first_name }} {{ $agent->last_name }} {{ $agent->phone }} {{ $agent->mobile }} {{ $agent->email }} {{ $agency->agency_name }} {{ $country->name }} {{ $city->city }}
@stop