@extends('admin.layouts.layouts')
@section('title', 'Create | Language Key')
@section('content')
{!! Form::open([
'route' => 'language-key.store',
'method' => 'POST',
'id' => 'language-key-form',
'enctype' => 'multipart/form-data',
]) !!}
@csrf
@foreach ($languages as $language)
@endforeach
{{ Form::close() }}
@endsection
@section('page-js')
@endsection