@extends('admins.layouts.index') @section('content') {!! Form::model($model, ['method'=>'post','class'=>'form-horizontal']) !!}

{{__('Basic Information')}}

{!! Form::label('name', __('Name'), ['class'=>'col-sm-4 col-form-label text-right']) !!}
{!! Form::text('name', null, ['id'=>'name','class'=>'form-control '.($errors->first('name') ? 'is-invalid' : ''),'placeholder'=>__('Name')]) !!} {!!$errors->first('name', ':message')!!}
{!! Form::label('message', __('Message'), ['class'=>'col-sm-2 col-form-label text-right']) !!}
{!! Form::textarea('message', null, ['rows'=>5,'id'=>'message','class'=>'form-control '.($errors->first('message') ? 'is-invalid' : ''),'placeholder'=>__('Write your sms message here...')]) !!} {!!$errors->first('message', ':message')!!}

{{__('More Information')}}

{{ __('Status') }}
{!! Form::radio('status', 1, true, ['id'=>'enabled','class'=>'form-check-input']) !!}
{!! Form::radio('status', 0, false, ['id'=>'disabled','class'=>'form-check-input']) !!}
{!! Form::close() !!} @endsection @section('script') @endsection