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

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

@endsection @section('content') {{ Form::model($result, ['route' => ['admin.customers.validleads.update', $result->id], 'class' => '', 'role' => 'form', 'method' => 'PATCH']) }}

{{ trans('Transfer') }}

{{ Form::selectGroup('agent_id', trans('Agent'), 'users',$agents, null,[]) }}

{{ Form::textGroup('first_name', trans('First Name'), 'users', ['placeholder' => trans('First Name'),'readonly' => 'true']) }} {{ Form::textGroup('last_name', trans('Last Name'), 'users', ['placeholder' => trans('Last Name'),'readonly' => 'true']) }} {{ Form::textGroup('phone', trans('Phone'), 'phone', ['placeholder' => trans('Phone'),'readonly' => 'true']) }} {{ Form::textGroup('mobile', trans('Mobile'), 'mobile', ['placeholder' => trans('Mobile'),'readonly' => 'true']) }} {{ Form::textGroup('email', trans('Email'), 'envelope', ['placeholder' => trans('Email'),'readonly' => 'true']) }} {{ Form::textGroup('agency', trans('Agency Name'), 'user', ['placeholder' => trans('Email'),'readonly' => 'true']) }}
{{ Form::label('head_line', trans('Which data to transfer ?')) }}
@foreach($table as $key=>$tab) @if($count >= 7 && $count < 53)
{{ Form::checkbox('services[]',$tab) }}  
@endif @endforeach
{{ link_to_route('admin.customers.leads.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-md']) }}
{{ Form::submit(trans('Transfer'), ['class' => 'btn btn-success btn-md']) }}
{{ Form::close() }} @stop @section('after-scripts') @stop