@extends('layouts.app') @section('template_title') {{ $user->name }}'s Profile @endsection @section('template_fastload_css') #map-canvas{ min-height: 300px; height: 100%; width: 100%; } @endsection @section('content')
{{ trans('profile.showProfileTitle',['username' => $user->name]) }}
{{ $user->name }} @if ($user->profile) @if (Auth::user()->id == $user->id) {!! HTML::icon_link(URL::to('/profile/'.Auth::user()->name.'/edit'), 'fa fa-fw fa-cog', trans('titles.editProfile'), array('class' => 'btn btn-small btn-info btn-block')) !!} @endif @else

{{ trans('profile.noProfileYet') }}

{!! HTML::icon_link(URL::to('/profile/'.Auth::user()->name.'/edit'), 'fa fa-fw fa-plus ', trans('titles.createProfile'), array('class' => 'btn btn-small btn-info btn-block')) !!} @endif
@endsection @section('footer_scripts') @include('scripts.google-maps-geocode-and-map') @endsection