mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
41 lines
998 B
PHP
41 lines
998 B
PHP
@extends('translation::layout')
|
|
|
|
@section('body')
|
|
|
|
<div class="panel w-1/2">
|
|
|
|
<div class="panel-header">
|
|
|
|
{{ __('translation::translation.add_language') }}
|
|
|
|
</div>
|
|
|
|
<form action="{{ route('languages.store') }}" method="POST">
|
|
|
|
<fieldset>
|
|
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
|
|
|
<div class="panel-body p-4">
|
|
|
|
@include('translation::forms.text', ['field' => 'name', 'label' => __('translation::translation.language_name'), ])
|
|
|
|
@include('translation::forms.text', ['field' => 'locale', 'label' => __('translation::translation.locale'), ])
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<div class="panel-footer flex flex-row-reverse">
|
|
|
|
<button class="button button-blue">
|
|
{{ __('translation::translation.save') }}
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
@endsection |