@extends('admin/layouts/default')
{{-- Page title --}}
@section('title')
Action Edit
@parent
@stop
{{-- page level styles --}}
@section('header_styles')
@stop
{{-- Page content --}}
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@include('admin.layouts.crm.edit_action')
@stop
{{-- page level scripts --}}
@section('footer_scripts')
@stop