@extends('layouts.app') @push('css_lib') {{--dropzone--}} @endpush @section('title',trans('lang.locations_table')) @section('content') @include('flash::message') @include('adminlte-templates::common.errors')
{!! Form::open(['route' => ['helpandsupport.update', $edithelp[0]->id], 'method' => 'patch']) !!}
{!! Form::label('address',"Address", ['class' => 'col-5 control-label text-right']) !!}
{!! Form::textarea('address',$edithelp[0]->address, ['class' => 'form-control','placeholder'=>"Address"]) !!}
{!! Form::label('email',"Email ID", ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('email',$edithelp[0]->email, ['class' => 'form-control','placeholder'=> "Email ID"]) !!}
{!! Form::label('mobile_no',"Phone Number", ['class' => 'col-5 control-label text-right']) !!}
{!! Form::number('mobile_no',$edithelp[0]->mobile_no, ['id'=>'esearchcity','class' => 'form-control','placeholder'=>"Phone Number"]) !!}
{!! Form::label('status', trans("lang.status"), ['class' => 'col-5 control-label text-right']) !!}
{{ trans("lang.status") }}
{{trans('lang.cancel')}}
{!! Form::close() !!}
@include('layouts.media_modal',['collection'=>null]) @endsection @push('scripts_lib') {{--dropzone--}} @endpush