@extends('admin.layout') @section('content')

{{ __('Languages') }}

{{ __('Add Language') }}

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('code'))

{{ $errors->first('code') }}

@endif
@if ($errors->has('direction'))

{{ $errors->first('direction') }}

@endif
@endsection