@extends('Frontend.Layouts.modal') @section('title') {{ trans('global.edit') }} @stop @section('body') {!! Form::open(array('route' => ['admin.languages.update', $language['key']], 'method' => 'PUT')) !!}
{!! Form::hidden('active', 0) !!} {!! Form::checkbox('active', 1, $language['active']) !!} {!! Form::label(null, trans('validation.attributes.active')) !!}
{!! Form::label('title', trans('validation.attributes.title').':') !!} {!! Form::text('title', $language['title'], ['class' => 'form-control']) !!}
{!!Form::label('flag', trans('validation.attributes.flag').'*:')!!} {!!Form::hidden('flag')!!}
@foreach ($flags as $flag => $src)
{!! Form::radio('flag', $flag, $flag == $language['flag'], []) !!}
@endforeach
{!! Form::close() !!} @stop