@extends('admin.layout.master') @section('style') @stop @section('body')

{{$page_title}}

{{ csrf_field() }}
Title
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
Location
@if ($errors->has('location'))
{{ $errors->first('location') }}
@endif
Salary
@if ($errors->has('salary'))
{{ $errors->first('salary') }}
@endif
Offer type
@if ($errors->has('offer_type'))
{{ $errors->first('offer_type') }}
@endif
Expires date
@if ($errors->has('expires_at'))
{{ $errors->first('expires_at') }}
@endif

Description
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif



@endsection @section('script') @stop