@extends('adminlte::page') @section('content') @section('content_header', __('admin.translations'))
@if(count($errors) > 0)
@foreach($errors->all() as $error)

{{$error}}

@endforeach
@endif @if(Session::has('success'))

{{ Session::get('success') }}

@endif
@lang('admin.create_translation')
@foreach($translations as $row) @endforeach
ID @lang('admin.language') @lang('admin.edit') @lang('admin.delete')
{{$row->id}} {{$row->language}} @lang('admin.edit')
{{ csrf_field() }} {{ method_field('DELETE') }} @if($row->id == '1') @lang('admin.delete') @else @lang('admin.delete') @endif
@if($translations->isEmpty())
@lang('admin.no_record').
@endif
@endsection