@extends('master.index') @section('content')

{{ $title }}

{!! Form::open() !!}
{!! Form::label('title', t('Title')) !!}* {!! Form::input('text','title',null, ['required', 'class' => 'form-control', 'placeholder' => t('Title')]) !!}
{!! Form::label('description', t('Description')) !!}* {!! Form::textarea('description',null, ['id' => 'editor', 'class' => 'form-control', 'placeholder' => t('Description')]) !!}
{!! Form::label('apply_elsewhere', t('Apply from somewhere else')) !!} {!! Form::checkbox('apply_elsewhere', 1, null, ['id' => 'apply_elsewhere']) !!}
{!! Form::label('apply_to', t('How to apply')) !!}* {!! Form::textarea('apply_to',null, ['rows' => 3, 'id' => 'editor', 'class' => 'form-control', 'placeholder' => t('How and where to apply, email address or link')]) !!}
{!! Form::label('is_remote', t('Is Remote Job')) !!} {!! Form::checkbox('is_remote', 1, null, ['id' => 'is_remote']) !!}
{!! Form::label('location', t('Location')) !!} {!! Form::select('location',[],[],['class' => 'location', 'placeholder' => t('City, Sate, Country')]) !!} {!! Form::input('text','location_id',null,['class' => 'place_id hidden', 'placeholder' => t('City, Sate, Country')]) !!}
{!! Form::label('tags', 'Tags') !!} ( {{ t('Optional') }})
@include('posts.partials.stripe') {!! Form::close() !!}
@endsection