16 lines
300 B
PHP
16 lines
300 B
PHP
@push('head')
|
|
<link rel="stylesheet" href="{{ mix("css/user.css") }}">
|
|
@endpush
|
|
|
|
@extends('layouts.app')
|
|
|
|
@section('title', "Sklep")
|
|
|
|
@section('main')
|
|
<p>
|
|
<b>Welcome, you are logged in as {{ $user->name }}</b>
|
|
</p>
|
|
<p>
|
|
<a href="/logout"> Logout </a>
|
|
</p>
|
|
@endsection()
|