@extends('Frontend.Layouts.modal') @section('title', trans('front.send_test_sms')) @section('body') {!! Form::open(['route' => 'sms_gateway.send_test_sms', 'method' => 'POST']) !!} {!! Form::hidden('request_method') !!} {!! Form::hidden('authentication') !!} {!! Form::hidden('username') !!} {!! Form::hidden('password') !!} {!! Form::hidden('sms_gateway_url') !!} {!! Form::hidden('custom_headers') !!} {!! Form::hidden('encoding') !!} {!! Form::hidden('auth_id') !!} {!! Form::hidden('auth_token') !!} {!! Form::hidden('senders_phone') !!}
{!! Form::label('mobile_phone', trans('validation.attributes.mobile_phone').':') !!} {!! Form::text('mobile_phone', null, ['class' => 'form-control']) !!}
{!! Form::label('message', trans('validation.attributes.message').':') !!} {!! Form::textarea('message', null, ['class' => 'form-control', 'rows' => 2]) !!}
{!! Form::close() !!} @stop @section('buttons') @stop