Merge pull request #84 from Gamerboy59/appname-patch
Use app name at more places in app
This commit is contained in:
commit
6ecf12c226
|
@ -6,7 +6,7 @@
|
||||||
<!-- Validation Errors -->
|
<!-- Validation Errors -->
|
||||||
<x-auth-validation-errors class="mb-4" :errors="$errors"/>
|
<x-auth-validation-errors class="mb-4" :errors="$errors"/>
|
||||||
|
|
||||||
<h3 class="text-center mb-4">My idlers</h3>
|
<h3 class="text-center mb-4">@if (config()->has('app.name')) {{ config('app.name') }} @else My idlers @endif</h3>
|
||||||
<form method="POST" action="{{ route('login') }}">
|
<form method="POST" action="{{ route('login') }}">
|
||||||
@csrf
|
@csrf
|
||||||
<div class="form-floating mb-3">
|
<div class="form-floating mb-3">
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<!-- Validation Errors -->
|
<!-- Validation Errors -->
|
||||||
<x-auth-validation-errors class="mb-4" :errors="$errors"/>
|
<x-auth-validation-errors class="mb-4" :errors="$errors"/>
|
||||||
|
|
||||||
<h3 class="text-center mb-4">My idlers Register</h3>
|
<h3 class="text-center mb-4">@if (config()->has('app.name')) {{ config('app.name') }} @else My idlers @endif Register</h3>
|
||||||
<form method="POST" action="{{ route('register') }}">
|
<form method="POST" action="{{ route('register') }}">
|
||||||
@csrf
|
@csrf
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||||
|
|
||||||
<title>@yield('title') - My idlers</title>
|
<title>@yield('title') - @if (config()->has('app.name')) {{ config('app.name') }} @else My idlers @endif</title>
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">
|
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}">
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<nav class="navbar navbar-expand-md navbar-light bg-light shadow-sm" aria-label="Eleventh navbar example">
|
<nav class="navbar navbar-expand-md navbar-light bg-light shadow-sm" aria-label="Eleventh navbar example">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a class="navbar-brand" href="{{route('/')}}">My Idlers</a>
|
<a class="navbar-brand" href="{{route('/')}}">@if (config()->has('app.name')) {{ config('app.name') }} @else My idlers @endif</a>
|
||||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarsExample09"
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarsExample09"
|
||||||
aria-controls="navbarsExample09" aria-expanded="false" aria-label="Toggle navigation">
|
aria-controls="navbarsExample09" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user