@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Content Tools: Clean

{!! Form::open(['url' => route('sysadmin_tools_clean_tree_code'), 'class' => '']) !!}
{{ Form::textarea('new_text', $new_text, array('class'=>'form-control', 'rows'=>30)) }}
{{ Form::textarea('full_text', $full_text, array('class'=>'form-control', 'rows'=>30)) }}
{!! Form::close() !!}
@if(count($values)>0)
@foreach($values as $key=>$value) {{ $key }} || {{$value}}
@endforeach
@endif
@endsection