@extends('layouts.app') @section('title') @if( ! empty($title)) {{ $title }} | @endif @parent @endsection @section('content')
Add a language by filling and submit below form. Language name will show every where need a language, such as in language switcher, and language code will be work in background and it will be hit url for make request to application to change that language. You have to make a directory in {{ resource_path('lang') }}
directory, name will be same as language code. example: if your language code is en, so directory name also will be en, although en is default. you can't delete or edit this language. copy {{ resource_path('lang') }}/en/app.php
file to your newly created directory and change all array value.
Example: 'login' => 'Changeable String',