@extends('../../master_layout/website_master') @section('title') {{env('APP_NAME')}} :: About me @endsection @section('heading')
@endsection @section('content') @if (session('errors'))
@foreach($errors->all() as $message)
  • {{$message}}
  • @endforeach
    @endif

    User: {{$user->display_name}}

    About me

    {!! nl2br($user->about_me) !!}

    @endsection