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

{{ trans('labels.EditPage') }} {{ trans('labels.EditPage') }}...

{{ trans('labels.EditPage') }}

@if( count($errors) > 0) @foreach($errors->all() as $error) @endforeach @endif {!! Form::open(array('url' =>'admin/updatewebpage', 'method'=>'post', 'class' => 'form-horizontal form-validate', 'enctype'=>'multipart/form-data')) !!} {!! Form::hidden('id', $result['editPage'][0]->page_id, array('class'=>'form-control', 'id'=>'id')) !!}
{!! Form::text('slug', $result['editPage'][0]->slug, array('class'=>'form-control field-validate', 'id'=>'slug')) !!} {{ trans('labels.pageSlugWithDashesText') }}
@foreach($result['description'] as $description_data)
{{ trans('labels.PageName') }} ({{ $description_data['language_name'] }})
{{ trans('labels.Description') }} ({{ $description_data['language_name'] }})
@endforeach
{{ trans('labels.StatusPageText') }}
{!! Form::close() !!}
@endsection