@extends ('backend.layouts.app') @section ('title', trans('Leads Management') . ' | ' . trans('Verified')) @section('page-header')

{{ trans('Leads Management') }} {{ trans('') }}

@endsection @section('content') {{--{{dd($results)}}--}}

{{ trans('Details') }}

@foreach($leads as $key => $value) @endforeach
@if($results->isvalidated != 1) {{ Form::model($results, ['route' => ['admin.agents.leads.update', $results->id], 'class' => '', 'role' => 'form', 'method' => 'PATCH']) }}
{{ Form::label('isvalidated', trans('This information is valid ?')) }}
{{ Form::selectGroup('isvalidated', trans('Validated'), 'caret-down', ['1'=>'Valid','0'=>'Invalid'], $results->isvalidated, []) }}
{{ link_to_route('admin.agents.leads.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-md']) }}
{{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'btn btn-success btn-md']) }}
{{ Form::close() }} @endif @stop @section('after-scripts') {{ Html::script('js/backend/access/users/script.js') }} @stop