@extends('layouts.app') @section('title', 'Home Page') @section('content')
@if(auth()->check())

{{ __('hello', ['user' => auth()->user()->name ]) }}

@endif

{{ __('welcome') }}

@endsection