@extends('core::base.layouts.master') @section('title') {{ translate('New Language') }} @endsection @section('custom_css') @endsection @section('main_content')

{{ translate('New Language') }}

@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('native_name'))
{{ $errors->first('native_name') }}
@endif
@if ($errors->has('code'))
{{ $errors->first('code') }}
@endif
@endsection @section('custom_scripts') @endsection