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