@extends('layouts.master') @section('page_title') @if(isset($page_title)) {{ $page_title }} @endif @endsection @section('content')
@include('commons.notifications')
{{-- start of content --}}

{!! Form::model($clickapp, [ 'method' => 'PATCH', 'url' => ['clickapps', $clickapp], 'class' => 'form-horizontal form-label-left' ]) !!}
{!! Form::text('app_name', old('app_name'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter App Name' , 'id' => 'app_name']) !!} {!! $errors->first('app_name', '

:message

') !!}
{!! Form::text('app_type', old('app_type'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter App Type' , 'id' => 'app_type']) !!} {!! $errors->first('app_type', '

:message

') !!}
{!! Form::text('client', old('client'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter App Type' , 'id' => 'client']) !!} {!! $errors->first('client', '

:message

') !!}
{!! Form::text('code', old('code'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter CODE' , 'id' => 'code']) !!} {!! $errors->first('code', '

:message

') !!}
{!! Form::select('country', $countries ,old('country'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Select Country ' , 'id' => 'country']) !!} {!! $errors->first('country', '

:message

') !!}
{!! Form::select('operator', $net_ops ,old('operator'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Select Operator ' , 'id' => 'country']) !!} {!! $errors->first('operator', '

:message

') !!}
{!! Form::select('tollfree', $toll_types ,old('tollfree'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Select Toll Option ' , 'id' => 'country']) !!} {!! $errors->first('tollfree', '

:message

') !!}
{!! Form::text('app_path', old('app_path'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter App Name' , 'id' => 'app_path']) !!} {!! $errors->first('app_path', '

:message

') !!}
{!! Form::date('launch_date', old('launch_date'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter App Name' , 'id' => 'launch_date']) !!} {!! $errors->first('launch_date', '

:message

') !!}
{!! Form::select('status', $status_types ,old('status'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Set status ' , 'id' => 'country']) !!} {!! $errors->first('status', '

:message

') !!}
{!! Form::textarea('other_info', old('other_info'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Specify other information...' , 'id' => 'other_info']) !!} {!! $errors->first('other_info', '

:message

') !!}
{!! Form::close() !!}
{{-- end of x_content --}}
{{-- end of x_panel --}}
@endsection @section('javascript') @endsection