@php $input='title'; @endphp
{!! Form::rawLabel($input,"عنوان المحادثة"."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::text($input,null,['class'=>' form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='message'; @endphp
{!! Form::rawLabel($input,"الرسالة"."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::textarea($input,null,['class'=>' form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach